This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "toolbox-reader",
"version": "2.2.2",
"private": true,
"eslintConfig": {
"extends": "react-app",
"rules": {
"react-hooks/exhaustive-deps": false
}
},
"dependencies": {
"axios": "^0.18.0",
"colorable": "^1.0.5",
"connected-react-router": "^6.4.0",
"history": "^4.9.0",
"immer": "^3.1.1",
"js-beautify": "^1.10.0",
"nanoid": "^2.0.1",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"rc-tooltip": "^3.7.3",
"react": "^16.8.6",
"react-clipboard.js": "^2.0.7",
"react-css-collapse": "^3.6.0",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-syntax-highlighter": "^10.2.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"semver": "^6.0.0",
"styled-components": "^4.2.0",
"twig": "^1.13.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"react-app-rewired": "^2.1.3",
"react-scripts": "^3.0.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-app-rewired build && rm ./build/precache-manifest.*",
"test": "react-scripts test",
"eject": "react-scripts eject",
"copy-build": "mv build/static/js/main.*.js build/static/js/main.js && mv build/static/js/main.*.js.map build/static/js/main.js.map && mv build/static/css/main.*.css build/static/css/main.css && mv build/static/css/main.*.css.map build/static/css/main.css.map"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}