-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "api",
"version": "1.0.0",
"description": "50Days API. Codaisseur Project week 7",
"main": "build/server.js",
"scripts": {
"start": "node ./server.js",
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-ts": "tsc -w",
"watch-node": "nodemon build/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^11.9.4",
"@types/body-parser": "^1.17.0",
"@types/socket.io": "^2.1.2",
"@types/express": "^4.16.1"
},
"dependencies": {
"express": "^4.16.4",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"pg": "^7.8.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.7.7",
"socket.io": "^2.2.0",
"ts-node": "^8.0.2",
"typeorm": "^0.2.13",
"typescript": "^3.3.3"
}
}