-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
95 lines (95 loc) · 2.46 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
{
"name": "ching",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"preinstall": "./scripts/pre-install.sh",
"postinstall": "./scripts/post-install.sh",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build",
"flow": "flow",
"lint": "eslint \"src/**/*.js?(x)\"",
"flint": "yarn flow && yarn lint",
"stage": "./scripts/stage.sh"
},
"engines": {
"node": "10.15.1"
},
"dependencies": {
"@emotion/core": "^10.0.6",
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"ajv": "^6.5.4",
"browser-image-resizer": "^2.0.1",
"emotion-normalize": "^10.0.0",
"ethereumjs-util": "^6.1.0",
"firebase": "^5.8.1",
"firebase-admin": "^8.9.2",
"gh-pages": "^2.0.1",
"js-promisify": "^1.3.1",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"prop-types": "^15.6.2",
"qrious": "^4.0.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-html5-camera-photo": "^1.2.9",
"react-list": "^0.8.11",
"react-redux": "^5.1.0",
"react-redux-firebase": "^2.2.6",
"react-resize-detector": "^3.4.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"react-sizeme": "^2.5.2",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-firestore": "^0.6.3",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"smart-truncate": "^1.0.1",
"web3": "0.20.6"
},
"devDependencies": {
"canvas": "^2.2.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-emotion": "^10.0.6",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.92.0",
"flow-typed": "^2.5.1",
"husky": "^1.3.1",
"jest": "23.6.0",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"source-map-explorer": "^1.7.0",
"surge": "^0.20.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"yarn lint --fix",
"git add"
]
}
}