-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"name": "app",
"type": "module",
"version": "0.1.0",
"homepage": "https://sprites.pmdcollab.org/",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.15",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.5",
"@types/node": "^20.2.5",
"@types/react-dom": "^18.2.4",
"@types/react-infinite-scroller": "^1.2.5",
"@vitejs/plugin-react-swc": "^3.3.2",
"dataframe-js": "^1.4.4",
"fast-xml-parser": "^4.2.4",
"gh-pages": "^5.0.0",
"phaser": "^3.60.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll": "^0.1.5",
"react-router-dom": "^6.22.1",
"react-tabs": "^6.0.1",
"typescript": "^4.9.5",
"vite": "^4.4.9",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.1",
"web-vitals": "^3.3.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"preprocess": "node preprocess.js",
"graphql": "graphql-codegen --config codegen.yml"
},
"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"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-operations": "2.4.0",
"@graphql-codegen/typescript-react-apollo": "3.2.14",
"@types/dataframe-js": "^1.4.0",
"@types/react": "^18.0.12",
"node-fetch": "^3.2.4"
}
}