-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 754 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
{
"name": "node-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build & npm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/multer": "^1.3.7",
"@types/node": "^11.9.5",
"nodemon": "^1.18.10",
"tslint": "^5.13.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"fs": "0.0.1-security",
"multer": "^1.4.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}