-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"proxy": "http://localhost:8080",
"name": "bored-games",
"description": "Board games that friends can play together.",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"boardgame.io": "^0.49.12",
"deep-extend": "^0.6.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.18.1",
"immer": "^3.2.0",
"log4js": "^6.5.2",
"react": "^16.13.1",
"react-dice-complete": "^1.2.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"shortid": "^2.2.15",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/cookie": "^0.4.0",
"@types/deep-extend": "^0.4.31",
"@types/express": "^4.17.13",
"@types/jest": "^24.9.1",
"@types/node": "^18.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"nodemon": "^2.0.4",
"react-scripts": "^4.0.3",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"scripts": {
"//0": "CRA",
"test:app": "react-scripts test",
"eject": "react-scripts eject",
"//1": "DEVELOPMENT",
"start:app": "react-scripts --openssl-legacy-provider start",
"start:server": "nodemon --config \"./nodemon.json\"/",
"//2": "PRODUCTION",
"prestart": "[ ! -d 'build' ] && echo 'Missing production build. Run `npm run build` or did you mean to run `npm run start:app` and `npm run start:server` for development mode?' && exit 1 || exit 0",
"start": "node --experimental-fetch -r esm build/server",
"//3": "BUILD",
"build:app": "react-scripts --openssl-legacy-provider build",
"build:server": "tsc --project ./ --sourceMap false --noEmit false",
"build": "./build.sh",
"//4": "MISC",
"lint": "tslint --project tsconfig.json",
"//5": "PACKAGE",
"prepack": "[ -d 'build' ] || npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"/Docker",
"/build",
"/log4js.config.json",
"/.env"
]
}