forked from liberland/liberland_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.96 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": "liberland-front_end",
"version": "0.1.0",
"private": true,
"dependencies": {
"@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": "^4.17.1",
"@polkadot/extension-dapp": "^0.38.8",
"axios": "^0.19.0",
"classnames": "^2.3.1",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"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-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",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:jest": "react-scripts test --watchAll=false --forceExit",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"eslint": "node_modules/.bin/eslint src/"
},
"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": {
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prop-types": "^15.7.2"
},
"lint-staged": {
"*.{js, jsx}": [
"node_modules/.bin/eslint --max-warnings=0"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}