forked from leftstick/ts-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 896 Bytes
/
package.json
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
36
37
38
39
{
"name": "ts-express",
"version": "1.0.0",
"description": "This is a TypeScript based express starter",
"main": "./application/index.js",
"scripts": {
"type": "tsd install express",
"build": "tsc",
"preinstall": "npm run type",
"prestart": "npm run build",
"start": "node ./application/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftstick/ts-express.git"
},
"keywords": [
"TypeScript",
"express"
],
"author": "Howard.Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/leftstick/ts-express/issues"
},
"engines": {
"node": ">=5.0"
},
"homepage": "https://github.com/leftstick/ts-express#readme",
"dependencies": {
"express": "^4.13.4",
"jade": "^1.11.0",
"just-promiseify": "^1.1.1",
"typescript": "^1.8.10"
},
"devDependencies": {
"tsd": "^0.6.5"
}
}