-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 715 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 715 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
{
"name": "typescript-overnightjs-express-starter",
"version": "1.0.0",
"description": "This is the starting template for building a web app/api powered by Express using Typescript and OvernightJs",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.5.0",
"express": "^4.17.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/node": "^12.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}