-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 872 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
35
{
"name": "node-express-ts-starter",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node ./src/index.ts",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "jest --detectOpenHandles"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.0",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"jest": "^26.4.2",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}