-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 KB
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
{
"name": "monitor",
"description": "",
"main": "index.js",
"author": "Radim Daniel Panek",
"homepage": "https://github.com/equabank/monitor",
"license": "MIT",
"version": "0.5.0",
"flow": "flow",
"jest": {
"verbose": true,
"bail": true,
"cacheDirectory": "./logs",
"coverageDirectory": "test/",
"collectCoverageFrom": ["**/*.{js,jsx}", "!**/node_modules/**"],
"collectCoverage": true,
"coverageReporters": "text",
"notify": true
},
"dependencies": {
"babel-polyfill": "6.23.0",
"body-parser": "1.17.1",
"elasticsearch": "13.0.0-rc2",
"express": "4.15.2",
"material-ui": "0.17.4",
"moment": "2.18.1",
"moment-range": "3.0.3",
"moment-timezone": "0.5.13",
"morgan": "1.8.1",
"react": "15.4.2",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"react-router": "3.0.2",
"react-tap-event-plugin": "2.0.1",
"redux": "3.7.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"rotating-file-stream": "1.2.2",
"tv4": "1.3.0",
"vis": "4.19.1"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.23.0",
"chai": "3.5.0",
"chai-http": "3.0.0",
"concurrently": "3.4.0",
"enzyme": "2.8.0",
"flow-bin": "0.47.0",
"mocha": "3.2.0",
"react-addons-test-utils": "15.4.2",
"react-scripts": "0.9.5",
"sinon": "2.1.0"
},
"scripts": {
"client": "react-scripts start",
"build": "react-scripts build",
"unit": "react-scripts test --env=jsdom",
"integration": "NODE_ENV=test PORT=3002 mocha",
"filldata": "NODE_ENV=fillData PORT=3002 mocha",
"eject": "react-scripts eject",
"server": "babel-node server.js",
"start": "concurrently \"yarn server\" \"yarn client\""
},
"proxy": "http://localhost:3001/"
}