-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 966 Bytes
/
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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server-dev": "nodemon --delay 1500ms --exec ts-node ./src/index.ts",
"client-dev": "npm start --prefix client",
"client-install": "npm i --prefix client",
"start": "ts-node ./src/index.ts",
"build": "tsc",
"client": "npm start --prefix front",
"heroku-postbuild": "npm i --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/socket.io": "^2.1.4",
"nodemon": "^1.19.0",
"tslint": "^5.16.0"
},
"dependencies": {
"@types/node": "^12.11.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}