-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "lhog",
"version": "1.0.0",
"private": true,
"dependencies": {
"@boardgame.io/storage-cache": "^0.6.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@mui/x-data-grid": "^5.17.24",
"bcryptjs": "^2.4.3",
"boardgame.io": "^0.50.2",
"cubenations": "^2.0.0",
"esm": "^3.2.25",
"gembalaya": "^2.0.0",
"history": "^5.0.0",
"koa-passport": "^4.1.3",
"koa-session": "^6.0.0",
"koa-session-mongoose": "^3.0.1",
"koa-static": "^5.0.0",
"merchantsofdeutsche": "^0.2.1",
"mongoose": "^6.10.0",
"passport-local": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"wattmatrix": "^2.0.1"
},
"scripts": {
"start": "SINGLE_PORT=1 node -r esm server/server.js",
"dev": "REACT_APP_ENV=dev react-scripts start",
"dev-single-port": "SINGLE_PORT=1 nodemon --inspect --trace-warnings -r esm server/server.js",
"dev-server": "ENV=dev nodemon --inspect --trace-warnings -r esm server/server.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "18.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.15",
"react-scripts": "5.0.1",
"typescript": "^3.9.10"
}
}