forked from gotchinomics/ghst-gg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.79 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
84
85
86
87
88
89
90
91
{
"name": "fireball",
"license": "MIT",
"version": "0.1.0",
"private": true,
"url": "https://github.com/orden-gg/fireball",
"dependencies": {
"@apollo/client": "^3.3.12",
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@ion-phaser/react": "^1.3.0",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.50",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.1",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"cross-fetch": "^3.1.4",
"ethers": "^5.4.6",
"graphql": "^15.5.0",
"luxon": "^2.3.1",
"phaser": "^3.55.2",
"query-string": "^7.1.1",
"quickswap-sdk": "^3.0.8",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-data-components": "^1.2.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-id-generator": "^3.0.2",
"react-redux": "^7.2.2",
"react-responsive-carousel": "^3.2.21",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-swipeable-views": "^0.14.0",
"react-virtuoso": "^2.8.5",
"redux": "^4.0.5",
"serve": "^12.0.1",
"use-metamask": "^1.3.2",
"web-vitals": "^1.1.0"
},
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider GENERATE_SOURCEMAP=false react-scripts build",
"build:prod": "gcloud builds submit --tag eu.gcr.io/ordengg/fireball",
"gcloud:staging": "gcloud run deploy fireball-staging --image eu.gcr.io/ordengg/fireball:latest --region europe-west1",
"gcloud:prod": "gcloud run deploy fireball --image eu.gcr.io/ordengg/fireball:latest --region europe-west1",
"deploy:staging": "run-s build:prod gcloud:staging",
"deploy:prod": "run-s build:prod gcloud:prod",
"start": "NODE_OPTIONS=--openssl-legacy-provider PORT=3005 react-scripts start",
"start:prod": "NODE_OPTIONS=--openssl-legacy-provider react-scripts build && serve -s build",
"test": "jest --config ./jest.config.js",
"eject": "react-scripts eject",
"clean": "rm -rf node_modules"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"immer": "9.0.6",
"glob-parent": "5.1.2"
},
"devDependencies": {
"@babel/preset-env": "7.16.5",
"@babel/preset-react": "7.16.5",
"jest": "26.6.0",
"jest-canvas-mock": "^2.3.1",
"npm-run-all": "^4.1.5",
"react-test-renderer": "17.0.2",
"regenerator-runtime": "0.13.9"
}
}