-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 862 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 862 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
33
34
35
{
"name": "stockServer",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"dev": "nodemon --require ts-node/register ./app/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/multer": "^1.3.7",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"multer": "^1.3.1",
"pg": "^7.4.3",
"reflect-metadata": "^0.1.12",
"routing-controllers": "^0.7.7",
"sequelize": "^4.38.1",
"sequelize-typescript": "^0.6.6",
"socket.io": "^2.1.1",
"typescript": "^3.0.3"
},
"devDependencies": {
"nodemon": "^1.18.4",
"ts-node": "^7.0.1"
}
}