-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
123 lines (123 loc) · 3.52 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
114
115
116
117
118
119
120
121
122
123
{
"name": "liberland-front_end",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"dependencies": {
"@braintree/sanitize-url": "^7.0.0",
"@emotion/core": "^10.0.27",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@polkadot/api": "^10.9.1",
"@polkadot/api-derive": "^10.9.1",
"@polkadot/extension-dapp": "^0.46.5",
"@polkadot/keyring": "^12.3.1",
"@polkadot/util": "^12.4.2",
"@polkadot/util-crypto": "12.4.2",
"@svgr/webpack": "^6.2.1",
"axios": "^0.19.0",
"babel-plugin-named-asset-import": "^0.3.8",
"buffer": "^6.0.3",
"classnames": "^2.3.1",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"ethers": "^5",
"file-loader": "^6.2.0",
"graphql": "^16.6.0",
"interpolate-html-plugin": "^4.0.0",
"lodash": "^4.17.15",
"markdown-to-jsx": "^7.4.5",
"node-sass": "^9.0.0",
"pako": "^2.1.0",
"postcss": "^8.4.12",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "~5.0.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.4.3",
"react": "^17.0.2",
"react-avatar": "^3.10.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-hook-form": "^7.12.2",
"react-oauth2-code-pkce": "^1.16.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-spinners": "^0.9.0",
"react-switch": "^5.0.1",
"react-table": "^7.7.0",
"recharts": "^2.7.3",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^12.6.0",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"usehooks-ts": "^2.9.1",
"uuid": "^8.3.2"
},
"scripts": {
"precommit": "lint-staged",
"eslint": "node_modules/.bin/eslint src/",
"webpack-dev-server": "webpack-dev-server",
"dev": "webpack-dev-server --mode=development",
"prod": "rm -rf dist/* && webpack --mode=production"
},
"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": {
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"lint-staged": {
"*.{js, jsx}": [
"node_modules/.bin/eslint --max-warnings=0"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}