-
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) · 864 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 864 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": "live-coding-backed",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"serve": "concurrently \"npx tsc --watch\" \"set NODE_ENV=development&& nodemon -q dist/index.js\"",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
},
"bin": {
"tsc": "./node_modules/.bin/typescript"
},
"engines": {
"node": "18.12.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.17.1",
"socket.io": "^4.7.2"
},
"description": "",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/socket.io": "^3.0.2",
"concurrently": "^7.5.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}