forked from ramondelemos/node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 873 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
{
"name": "node-typescript",
"version": "1.0.0",
"description": "Node TypeScript Project",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/.bin/tsc",
"start": "npm run build && node dist/server.js"
},
"keywords": [],
"author": "Ramon de Lemos",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/debug": "0.0.30",
"@types/express": "^4.11.1",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.2",
"typescript": "^2.8.1"
},
"dependencies": {
"@types/helmet": "0.0.37",
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"helmet": "^3.12.0",
"morgan": "^1.9.0"
}
}