-
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) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 717 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": "typescript-base-project",
"version": "1.0.0",
"description": "A typescript base project",
"main": "index.js",
"scripts": {
"start": "nodemon -inspect --config \"./scripts/nodemon.json\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.16.1",
"@types/morgan": "^1.9.1",
"dotenv": "^8.2.0",
"http-status-codes": "^2.1.2",
"morgan": "^1.10.0",
"ts-node": "^8.10.2",
"tslint": "^5.12.1",
"typescript": "^3.9.5",
"nodemon": "^2.0.4"
},
"dependencies": {
"express": "^4.16.4",
"cors": "^2.8.5",
"helmet": "^4.1.0"
}
}