forked from Igrium/rl_among_us
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (50 loc) · 1.39 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "rl_among_us",
"version": "0.1.0",
"description": "Server code for TaterCraft's real life Among Us game",
"main": "index.js",
"scripts": {
"start": "node dist/src/app.js",
"server": "nodemon src/app.ts",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "tsc -p . && tsc -p ./client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sam54123/rl_among_us.git"
},
"author": "TaterCraft",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Sam54123/rl_among_us/issues"
},
"homepage": "https://github.com/Sam54123/rl_among_us#readme",
"dependencies": {
"@types/socket.io": "^2.1.11",
"config": "^3.3.2",
"express": "^4.17.1",
"react-color": "^2.19.3",
"reactjs-popup": "^2.0.4",
"socket.io": "^3.0.0",
"socket.io-client": "^4.0.1",
"web-vitals": "^1.1.1"
},
"devDependencies": {
"@types/config": "^0.0.36",
"@types/express": "^4.17.8",
"@types/node": "^14.14.6",
"@types/react": "^17.0.3",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.3",
"@types/socket.io-client": "^1.4.36",
"concurrently": "^5.3.0",
"cra-template": "^1.1.2",
"nodemon": "^2.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}