-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 980 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
36
37
38
{
"name": "hack",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node server/index.ts",
"dev": "NODE_ENV=development webpack --watch --mode=development & ts-node server/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlink/hack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattlink/hack/issues"
},
"homepage": "https://github.com/mattlink/hack#readme",
"dependencies": {
"chalk": "^3.0.0",
"express": "^4.17.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.7.2",
"uuid": "^3.3.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/socket.io": "^2.1.4"
}
}