-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "top-down-react-phaser-game-template",
"homepage": ".",
"version": "1.0.0",
"private": false,
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@rtpa/phaser-bitmapfont-generator": "^1.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"free-tex-packer-core": "^0.3.4",
"npm-check-updates": "^16.7.5"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@react-spring/web": "^9.6.1",
"beautiful-react-hooks": "^3.12.2",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"is-mobile": "^3.1.1",
"jest": "^27.5.1",
"phaser": "^3.55.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-intl": "^6.2.8",
"react-scripts": "^5.0.1",
"sass": "^1.58.3",
"zustand": "^4.3.3"
},
"overrides": {
"react-router-dom": "5.3.4",
"react-error-overlay": "6.0.9"
},
"scripts": {
"generate-bitmap-font": "node scripts/generate-bitmap-font.js",
"generate-atlases": "node scripts/generate-atlas-files.js",
"copy-tileset-data": "node scripts/copy-tileset-data.js",
"start": "cross-env IMAGE_INLINE_SIZE_LIMIT=1 PUBLIC_URL=/ react-scripts start",
"build": "cross-env IMAGE_INLINE_SIZE_LIMIT=1 CI=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"bump": "ncu -u -t minor",
"clean": "rm node_modules/.cache/.eslintcache"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}