-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ts-quickstarter",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"dependencies": {},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.8",
"@types/jest": "^24.9.1",
"@types/morgan": "^1.9.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest",
"test:live": "jest --watch",
"build": "rm -rf ./build && tsc -p .",
"start": "npm run build && node -r ts-node/register -r tsconfig-paths/register ./build/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' -r tsconfig-paths/register src/index.ts",
"init": "rm -rf .git && git init",
"build:all": "sh scripts/run_all.sh",
"build:express": "sh scripts/express/run.sh",
"build:knex": "sh scripts/knex/run.sh",
"build:winston": "sh scripts/winston/run.sh",
"build:docker": "sh scripts/docker/run.sh",
"build:terraform": "sh scripts/terraform/run.sh",
"rm:express": "rm -rf scripts/express",
"rm:all": "rm -rf scripts",
"rollback": "sh scripts/rollback/rm.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therealtimhawkins/"
},
"author": "Tim Hawkins",
"license": "MIT"
}