-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 758 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 758 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
{
"name": "interview-service",
"version": "0.1.0",
"description": "Small service for interviewing candidates, provides a workspace with prompts to work through together",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"start": "node dist/index.js",
"build": "tsc"
},
"author": "Goeff Thomas <goeffthomas@gmail.com>",
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.17.8",
"@types/helmet": "0.0.33",
"@types/morgan": "^1.7.32",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"morgan": "^1.10.0",
"nocache": "^2.1.0"
},
"devDependencies": {
"@types/node": "^14.0.1",
"nodemon": "^2.0.2",
"tslib": "^2.0.0",
"typescript": "^4.2.4"
}
}