forked from dm-drogeriemarkt/selavi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "selavi-frontend",
"version": "0.0.1",
"description": "Service Landscape Visualizer",
"dependencies": {
"material-ui": "^0.18.6",
"react": "^15.4.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"rest": "^1.3.1",
"webpack": "^1.12.2",
"babel-register": "latest"
},
"scripts": {
"watch": "webpack --watch -d",
"test": "mocha -w src/test/javascript/setup.js src/test/javascript/**/*.spec.js",
"testCI": "nyc mocha src/test/javascript/setup.js src/test/javascript/**/*.spec.js"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"react-addons-test-utils": "^15.4.2",
"sinon": "^1.17.6",
"url-search-params-polyfill": "^2.0.0"
},
"nyc": {
"exclude": [
"src/**/*.spec.js",
"src/test/javascript/setup.js"
],
"reporter": [
"html",
"text"
]
}
}