-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.3 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
{
"name": "cpplot-viewer",
"version": "0.0.1",
"description": "Browser based tool for viewing and interacting with figures produced by the cpplot library",
"author": "thclark",
"license": "MIT",
"repository": "thclark/cpplot-viewer",
"dependencies": {
"bootstrap": "^4.1.0",
"chart.js": "^2.7.2",
"font-awesome": "^4.7.0",
"font-awesome-animation": "^0.2.1",
"jquery": "^3.3.1",
"npm": "^5.8.0",
"npm-run-all": "^4.1.3",
"plotly.js": "^1.45.0",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.3.2",
"react-json-schema": "^1.1.0",
"react-jsonschema-form": "https://api.github.com/repos/thclark/react-jsonschema-form/tarball/master",
"react-jsonschema-form-bootstrap": "https://api.github.com/repos/thclark/react-jsonschema-form-bootstrap/tarball/master",
"react-plotly.js": "^2.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^1.1.4",
"react-select": "^1.2.1",
"react-table": "^6.8.6",
"react-toastify": "^4.1.0",
"react-toastify-redux": "^1.0.0-rc.2",
"react-transition-group": "^1.2.1",
"react-truncate": "^2.3.0",
"reactstrap": "^5.0.0",
"redux": "^3.7.2",
"redux-api-middleware": "^2.0.0-beta.3",
"redux-persist": "^5.9.1",
"redux-persist-transform-filter": "0.0.16"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"start-dev": "npm-run-all -p watch-css start",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"audit-fix": "npm audit fix"
},
"engines": {
"node": "10.3.0",
"npm": "6.1.0"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"node-sass-chokidar": "^1.3.0"
}
}