forked from developit/express-es6-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 1 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
{
"name": "express-typescript-rest-api",
"version": "0.0.1",
"description": "Starter project for a Typescript RESTful Express API",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"dev": "nodemon",
"debug:idea": "node %NODE_DEBUG_OPTION% -r ts-node/register ./src/index.ts",
"start": "cross-env NODE_ENV=production node ./dist/index.js"
},
"repository": "csprance/express-typescript-rest-api",
"author": "Chris Sprance <chrissprance@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"morgan": "^1.8.0",
"resource-router-middleware": "^0.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.5.4",
"cross-env": "^5.2.0",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}