-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "takeout24-api",
"version": "1.0.0",
"main": "index.js",
"author": "Troy Anderson <TroyAnderson.d@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "cross-env NODE_ENV=production env-cmd -f ./.env node'src/**/*.ts' --exec ts-node src/index.ts",
"dev": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=development env-cmd -f ./.env nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"tsc": "tsc",
"lint": "tsc --noEmit && eslint */**/*.{js,ts,tsx} --quiet --fix"
},
"dependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.2",
"cross-env": "^7.0.2",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
}
}