-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 778 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 778 Bytes
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
{
"name": "week-6-task",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"compile": "yarn tsc",
"compile:watch": "yarn tsc -w",
"test": "jest"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^17.4.2",
"morgan": "^1.10.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.3",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.11",
"jest": "^27.3.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7"
}
}