-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "jedi-quests",
"version": "0.0.0",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"start": "NODE_MOCK_BE=true NODE_ENV=development webpack serve --config webpack.config.js --mode development",
"build": "rm -r -f ./dist && NODE_ENV=production webpack build --config webpack.config.js",
"build-with-source-maps": "rm -r -f ./dist && GENERATE_SOURCE_MAPS=true NODE_ENV=development webpack build --config webpack.config.js",
"lint": "eslint --ext .jsx,.js ./src --max-warnings=0",
"lintreport": "eslint --ext .jsx,.js ./src -f json > eslint.json",
"lint:fix": "yarn lint --fix",
"postinstall": "husky install .husky",
"watch:js": "nodemon --watch src/** -x \"yarn build\"",
"analyze": "NODE_ENV=production webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@reach/dialog": "^0.10.3",
"@svgr/webpack": "^6.5.1",
"@types/rebass": "^4.0.5",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"css-loader": "^6.7.1",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.6.12",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"mini-css-extract-plugin": "^2.6.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"polished": "^3.3.2",
"postcss-loader": "^7.0.1",
"postcss-safe-parser": "^6.0.0",
"react-device-detect": "^1.6.2",
"react-feather": "^2.0.10",
"react-refresh": "^0.14.0",
"react-spring": "^8.0.27",
"react-use-gesture": "^6.0.14",
"rebass": "^4.0.7",
"sass-loader": "^13.0.2",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.0",
"webpack-retry-chunk-load-plugin": "^3.1.1"
},
"dependencies": {
"@babel/preset-env": "^7.19.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.6",
"@mui/system": "^5.14.6",
"@reduxjs/toolkit": "^1.8.5",
"@starknet-react/core": "1.0.4",
"copy-webpack-plugin": "^11.0.0",
"date-fns": "^2.29.3",
"eventemitter3": "^5.0.1",
"get-starknet-core": "3.2.0",
"i18next": "^23.2.6",
"postcss": "^8.4.16",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-redux": "^8.0.2",
"react-router-dom": "^5.2.0",
"resolve-url-loader": "^5.0.0",
"starknet": "^5.19.2",
"styled-components": "^5.3.5",
"url-loader": "^4.1.1",
"webpack-bundle-analyzer": "^4.9.0"
},
"resolutions": {
"wrap-ansi": "^6.2.0"
},
"msw": {
"workerDirectory": "public"
}
}