forked from frontend/toolbox-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.28 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.28 KB
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
{
"name": "toolbox-reader",
"version": "2.0.11",
"private": true,
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint-config-airbnb",
"env": {
"browser": true
},
"rules": {
"arrow-body-style": 0,
"camelcase": 0,
"global-require": 0,
"import/extensions": 0,
"import/no-unresolved": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/no-danger": 0,
"react/jsx-no-bind": 0,
"react/no-did-mount-set-state": 0,
"react/no-array-index-key": 0,
"class-methods-use-this": 0,
"no-nested-ternary": 0,
"no-alert": 0,
"no-return-assign": 0,
"no-param-reassign": 0
}
},
"dependencies": {
"axios": "^0.17.1",
"colorable": "^1.0.5",
"history": "^4.7.2",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.0.2",
"prop-types": "^15.5.10",
"rc-tooltip": "^3.4.7",
"react": "^16.0.0",
"react-clipboard.js": "^1.1.2",
"react-css-collapse": "^3.0.2",
"react-dom": "^16.0.0",
"react-markdown": "^2.5.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-syntax-highlighter": "^5.6.2",
"redux": "^3.7.2",
"redux-observable": "^0.17.0",
"rxjs": "^5.5.5",
"styled-components": "^2.2.3",
"twig": "^1.10.5",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"react-scripts": "^1.0.7"
},
"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",
"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",
"build": "npm run build-css && react-scripts build && npm run copy-build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}