forked from gotchinomics/ghst-gg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.08 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
{
"name": "ghst",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.12",
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.3",
"@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.0.2",
"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",
"redux": "^4.0.5",
"serve": "^12.0.1",
"use-metamask": "^1.3.2",
"web-vitals": "^1.1.0",
"web3": "^1.3.4"
},
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider GENERATE_SOURCEMAP=false react-scripts build",
"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",
"react-test-renderer": "17.0.2",
"regenerator-runtime": "0.13.9"
}
}