-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "gnonce-expressjs-starter",
"version": "1.0.2",
"description": "Boilerplate for Express.js application.",
"license": "MIT",
"main": "index.ts",
"scripts": {
"start": "npm run start:prod",
"start:dev": "NODE_ENV=development nodemon ./src/app.ts --exec ts-node",
"start:prod": "node ./dist/app.js",
"build": "tsc -p ./",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist",
"test": "jest",
"coverage": "jest --collectCoverageFrom=./**.ts --coverage ./"
},
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/morgan": "^1.7.37",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"jest": "^24.8.0",
"nodemon": "^2.0.12",
"prettier": "1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}