-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 3.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "code-battle",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"prestart": "node_modules/.bin/babel-node tools/start.js",
"start": "npm-run-all --parallel test:watch open:src lint:watch",
"start:admin": "cross-env ADMIN_PAGE=true npm start",
"open:src": "cross-env NODE_ENV=development node_modules/.bin/webpack-dev-server",
"lint": "node_modules/.bin/esw src --fix",
"lint:watch": "npm run lint -- --watch",
"stylelint": "stylelint \"src/**/*.scss\"",
"format": "prettier --write **/**.{js,jsx,json}",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"test": "mocha --reporter progress tools/test.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"pre-commit": [
"lint",
"test",
"stylelint"
],
"dependencies": {
"axios": "^0.17.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.7.2",
"eslint-plugin-prettier": "^2.6.0",
"google-spreadsheet": "^2.0.5",
"html-react-parser": "^0.4.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-ace": "^5.10.0",
"react-bootstrap": "^0.31.5",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.1.1",
"react-joyride": "next",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"react-redux-loading-bar": "^2.9.3",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-styleguidist": "^7.0.17",
"redux": "^3.7.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "6.2.4",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"colors": "^1.1.2",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-config-google": "^0.9.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "^3.1.3",
"eventsource-polyfill": "^0.9.6",
"expect": "^21.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"jsdom": "8.5.0",
"mocha": "^4.0.1",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.2",
"pre-commit": "^1.2.2",
"preload-image-loader": "^1.0.0",
"react-timeago": "^3.4.3",
"react-transform-hmr": "^1.0.4",
"redux-immutable-state-invariant": "^2.1.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-hot-middleware": "^2.20.0"
}
}