-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
{
"name": "dexpos",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix --ext .jsx,.js src/*.js src/**/*.js",
"lint-two": "NODE_ENV=production lint-staged",
"css-build": "node-sass --omit-source-map-url src/theme/bulma.scss src/theme/bulma.css"
},
"dependencies": {
"apollo-cache-inmemory": "1.4.2",
"apollo-cache-persist": "0.1.1",
"apollo-client": "2.4.12",
"apollo-link": "1.2.6",
"apollo-link-context": "^1.0.15",
"apollo-link-error": "1.1.5",
"apollo-link-http": "^1.5.12",
"apollo-link-state": "0.4.2",
"axios": "^0.17.1",
"bootstrap": "^4.2.1",
"currency.js": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eth-core-js": "^0.1.7",
"formik": "^1.4.2",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"i18next": "^14.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": ">=4.17.5",
"merge-graphql-schemas": "^1.5.8",
"moment": "^2.24.0",
"prop-types": "^15.6.2",
"qs": "^6.6.0",
"rc-slider": "^8.6.5",
"react": "^16.7.0",
"react-apollo": "2.4.1",
"react-clipboard.js": "^2.0.2",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-i18next": "^9.0.10",
"react-loading": "^2.0.3",
"react-point": "^3.0.1",
"react-qrcode-logo": "^2.0.0",
"react-responsive-modal": "^3.6.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.8",
"react-select": "^2.4.2",
"react-sidebar": "^3.0.2",
"react-switch": "^4.0.1",
"react-textfit": "^1.1.0",
"styled-components": "^4.1.3",
"sweetalert": "^2.1.2",
"web3": "1.0.0-beta.33",
"websocket": "^1.0.28",
"yup": "^0.26.10"
},
"devDependencies": {
"bulma": "^0.7.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.1",
"pretty-quick": "^1.10.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
}
}