-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2.04 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
{
"name": "kmtr1x-app",
"version": "1.0.0",
"description": "React project kmtr1x",
"main": "index.js",
"author": "alexis",
"license": "ISC",
"scripts": {
"test": "jest",
"start": "nodemon server/server.js --ignore ./app/",
"webpack": "webpack --config config/webpack.js",
"webpack-watch": "webpack --config config/webpack.js --watch --colors"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs",
[
"babel-plugin-webpack-alias",
{
"config": "${PWD}/config/webpack.js"
}
]
]
}
}
},
"jest": {
"verbose": true
},
"dependencies": {
"chart.js": "^1.1.1",
"co": "^4.6.0",
"co-fs": "^1.2.0",
"history": "^4.6.1",
"keymetrics-api": "^1.3.0",
"koa": "1.2.4",
"koa-static": "^2.0.0",
"koa.io": "^0.0.3",
"material-ui": "^0.17.1",
"nested-props": "^1.0.2",
"normalize.css": "^5.0.0",
"pubsub-js": "^1.5.6",
"react": "^15.4.2",
"react-chartjs": "^0.8.0",
"react-dom": "^15.4.2",
"react-flexbox-grid": "^1.0.2",
"react-intl": "^2.2.3",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.27.3",
"file-loader": "^0.10.1",
"node-sass": "^4.5.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.15.0",
"url-loader": "^0.5.8",
"webpack": "^2.2.1"
}
}