-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.69 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
{
"name": "react-groundstation",
"version": "0.1.0",
"private": true,
"jest": {
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/react-dom/",
"node_modules/react-addons-test-utils/",
"node_modules/enzyme/"
]
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.0",
"fs": "0.0.1-security",
"html-webpack-plugin": "^2.30.1",
"interpolate-html-css-modules-webpack-plugin": "0.0.9",
"node-sass": "^4.5.3",
"postcss-loader": "^1.3.3",
"postcss-smart-import": "^0.6.13",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-scripts": "^0.8.4",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"cross-env": "^3.2.4",
"defer-promise": "^1.0.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.3.1",
"events": "^1.1.1",
"express": "^4.15.4",
"int64-buffer": "^0.1.9",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"mocha": "^3.5.0",
"mocha-eslint": "^3.0.1",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"promise": "^7.3.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-highcharts": "^11.5.0",
"react-router": "^3.0.5",
"socket.io": "^1.7.4",
"winston": "^2.3.1",
"xml2js": "^0.4.18",
"react-inlinesvg": "^0.6.2"
},
"scripts": {
"_pod": "nodemon --watch ./pod pod",
"start": "cross-env NODE_ENV=development nodemon --watch ./server --watch ./utils server",
"start-all": "npm run start && npm run _pod",
"start-profiling": "cross-env NODE_ENV=development nodemon --watch ./server --watch ./utils --prof server && nodemon --watch ./pod pod",
"start-all-concurrently": "concurrently \"npm run start\" \"npm run _pod\"",
"start-all-concurrently-debug": "concurrently \"npm run _start-debug\" \"npm run _pod\"",
"_start-debug": "cross-env NODE_ENV=development nodemon --watch ./server --watch ./utils --debug server",
"bstart": "npm run build && cross-env NODE_ENV=development nodemon server",
"build": "react-scripts build",
"test-backend": "./node_modules/.bin/mocha --reporter spec",
"test-frontend": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}