generated from IshaanOhri/TS-Template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "ts-template",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"dev": "env-cmd -f ./src/config/dev.env nodemon ./src/app.ts",
"pretty-quick": "pretty-quick",
"update": "npx npm-check-updates -u",
"build": "tsc --project tsconfig.json",
"start": "env-cmd -f ./src/config/dev.env ts-node ./src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.11",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"env-cmd": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "4.3.8",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"log4js": "^6.3.0",
"socket.io": "^3.1.1"
}
}