-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "ts-express-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"start:dev": "ts-node-dev src/index.ts",
"prod": "NODE_ENV=production npm run build && npm run start",
"watch:build": "tsc -w",
"watch:start": "nodemon ./dist/index.js",
"watch:all": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:build\" \"npm run watch:start\"",
"prettier": "node_modules/.bin/prettier --write \"src\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pretty-format": "^26.6.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"concurrently": "^5.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"nodemon": "^2.0.6",
"prettier": "2.1.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
}
}