-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 940 Bytes
/
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
{
"name": "my-express-app-with-ts",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "rimraf ./dist && tsc",
"build:watch": "rimraf ./dist && tsc --watch",
"dev": "tsc -w & DEBUG=myapp* nodemon",
"start": "DEBUG=myapp* node ./dist/index.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"morgan": "~1.9.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}