-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "rune-stone",
"description": "",
"version": "0.1.0",
"author": "dmcdcm",
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.22",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"firebase": "^7.19.1",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-color": "^2.18.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.2",
"react-firebaseui": "^4.1.0",
"react-markdown": "^4.3.1",
"react-redux": "^7.2.1",
"react-redux-firebase": "^3.7.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.2",
"redux-firestore": "^0.13.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.20.6",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write '**/*.{js,jsx,json,md}'",
"format:changed": "pretty-quick",
"format:staged": "pretty-quick --staged",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint **/*.js --quiet",
"lint-fix": "eslint --fix"
},
"husky": {
"hooks": {}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"npm": ">=4",
"node": ">=6"
}
}