-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "express-typescript-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pregen-docs": "npm install",
"gen-docs": "apidoc -i src/ -o docs/",
"prebuild": "npm install",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./bin/www",
"predev": "npm install",
"dev": "tsc-watch --onSuccess \"node ./bin/www\""
},
"engines": {
"node": "^8.9.4"
},
"dependencies": {
"body-parser": "^1.18.2",
"bugsnag": "^2.1.3",
"connect-timeout": "^1.9.0",
"debug": "^3.1.0",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"express-basic-auth": "^1.1.4",
"http-errors": "^1.6.3",
"morgan": "^1.9.0"
},
"devDependencies": {
"@types/bugsnag": "^2.5.28",
"@types/connect-timeout": "0.0.33",
"@types/debug": "0.0.30",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.11.1",
"@types/http-errors": "^1.6.1",
"@types/node": "^8.9.4",
"apidoc": "^0.17.6",
"tsc-watch": "^1.0.16",
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianldgs/express-typescript-starter-kit.git"
},
"author": "ianldgs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianldgs/express-typescript-starter-kit/issues"
},
"homepage": "https://github.com/ianldgs/express-typescript-starter-kit#readme"
}