-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "bootstrap-api",
"version": "1.0.0",
"main": "src/server.ts",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development ts-node src/server.ts",
"watch": "NODE_ENV=development ts-node-dev src/server.ts",
"build": "rm -rf dist && tsc",
"prod": "NODE_ENV=production node dist/server.js",
"test": "jest",
"lint": "eslint . --max-warnings 0"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn test"
}
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/morgan": "^1.9.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
}
}