-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "match-five",
"version": "0.1.0",
"private": true,
"homepage": "/match-five",
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@types/node": "^16.18.68",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0",
"bootstrap": "^5.3.2",
"framer-motion": "^11.15.0",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-icons": "^4.12.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.21.0",
"react-scripts": "5.0.1",
"redux-persist": "^6.0.0",
"typescript": "^4.9.5",
"uuid": "^11.0.5",
"web-vitals": "^2.1.4",
"ts-node": "^10.9.2"
},
"scripts": {
"start": "set PORT=3010 && react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"generate-game-data": "node scripts/generateGameData.js",
"postinstall": "npm run generate-game-data"
},
"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"
]
}
}