-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "mp-roulette",
"version": "1.0.1",
"description": "Roulette Multiplayer",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"start": "concurrently \"npm run server\" \"react-scripts start\"",
"server": "node --experimental-specifier-resolution=node --loader ts-node/esm server/server.ts localhost 8080"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mantine/core": "^5.9.4",
"@mantine/hooks": "^5.9.4",
"@mui/material": "^5.11.0",
"@tsed/socketio": "^7.8.2",
"@types/socket.io": "^3.0.2",
"animejs": "3.2.1",
"classnames": "2.3.2",
"concurrently": "7.6.0",
"easytimer.js": "^4.5.4",
"express": "4.18.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "^4.0.1",
"socket.io": "^4.5.4",
"socket.io-client": "4.5.4",
"ts-node": "10.9.1",
"typescript": "^4.1.2"
},
"devDependencies": {
"@types/animejs": "^3.1.6",
"@types/express": "^4.17.15",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"nodemon": "2.0.4",
"react-error-overlay": "^6.0.9",
"tslib": "^2.4.1"
},
"keywords": [
"express",
"node",
"react",
"typescript"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}