-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1007 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
36
37
38
39
{
"name": "app-name",
"version": "0.0.0",
"description": "App Description",
"main": "src/server.ts",
"scripts": {
"start": "nodemon",
"build": "tsc",
"test": "jest src/",
"test:prod": "cross-env NODE_ENV=production jest --config=jest.config.prod.js dist/",
"lint": "tslint -p tsconfig.json -c tslint.json",
"release": "standard-version"
},
"author": "Loïc Viennois",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.1.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.14",
"@types/morgan": "^1.9.1",
"@types/node": "^12.12.62",
"@types/supertest": "^2.0.10",
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"standard-version": "^9.0.0",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}