-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
{
"name": "questionnaire-builder",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react-app": "^3.1.0",
"chart.js": "^2.7.1",
"classnames": "^2.2.5",
"immutability-helper": "^2.4.0",
"material-ui": "^0.19.0",
"node-sass-chokidar": "^0.0.3",
"normalizr": "^3.2.4",
"npm-run-all": "^4.1.1",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"randomcolor": "^0.5.3",
"react": "^16.1.1",
"react-chartjs-2": "^2.6.4",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-scripts": "^1.0.17",
"react-spinner-material": "^1.0.16",
"redux": "^3.7.2",
"redux-form": "^7.1.2",
"redux-form-validators": "^2.1.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.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-scripts build",
"test": "NODE_ENV=development mocha --watch --require babel-core/register src/setupTests.js 'src/**/*.test.js'",
"eject": "react-scripts eject"
},
"devDependencies": {
"canvas-prebuilt": "^1.6.5-prerelease.1",
"chai": "^4.1.2",
"chai-exclude": "^1.0.3",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"fetch-mock": "^5.13.1",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.4.0",
"sinon": "^4.1.3"
}
}