-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 824 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 824 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
34
35
{
"name": "interview",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:dev": "nodemon ./bin/www",
"compile": "yarn tsc",
"compile:watch": "yarn tsc -w"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"create-html": "^4.1.0",
"debug": "~2.6.9",
"dotenv": "^14.3.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"joi": "^17.5.0",
"morgan": "~1.9.1",
"typescript": "^4.5.5"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/create-html": "^4.1.1",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"nodemon": "^2.0.15"
}
}