forked from RackHD/on-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.15 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
{
"name": "on-web-ui",
"version": "2.29.0",
"description": "RackHD UI",
"repository": {
"type": "git",
"url": "https://github.com/RackHD-mirror/on-web-ui.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.10.8"
},
"dependencies": {
"brace": "^0.7.0",
"color": "^0.11.3",
"elasticsearch": "^11.0.1",
"gl-matrix": "^2.3.1",
"lodash": "^4.15.0",
"material-ui": "*",
"moment": "^2.14.1",
"prismjs": "^1.5.1",
"radium": "^0.18.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-infinite": "^0.9.2",
"react-json-inspector": "^7.0.0",
"react-router": "^2.7.0",
"react-select": "^1.0.0-beta14",
"react-tap-event-plugin": "^2.0.1",
"superagent": "^2.2.0",
"swagger-client": "^2.1.18",
"create-react-class": "^15.5.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^3.10.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-gh-pages": "^0.5.4",
"gulp-less": "^3.3.0",
"gulp-minify-css": "^1.2.4",
"gulp-util": "^3.0.7",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-junit-reporter": "^0.2.2",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"less": "^2.7.1",
"mocha": "^3.1.2",
"source-map-loader": "^0.1.5",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"build-css": "rm -f static/monorail.css && gulp less",
"build-dev": "npm run build-css && npm run build-js-dev",
"build-js-dev": "NODE_ENV=development webpack-dev-server --inline --hot --progress",
"build-js": "NODE_ENV=production webpack -p --progress",
"build": "npm run build-css && npm run build-js",
"deploy": "npm run-script build && rm -f static/monorail.js.map* && gulp deploy",
"integration-test": "karma start test/karma.integration.conf.js",
"integration-test-dev": "karma start test/karma.integration.dev.conf.js",
"lint-ci": "eslint --ignore-path .gitignore {src,tasks,test} gulpfile.js -f checkstyle -o checkstyle-result.xml",
"lint": "eslint --ignore-path .gitignore {src,tasks,test} gulpfile.js",
"start": "npm run build-dev",
"test-ci": "npm run -s lint-ci && karma start test/karma.conf.js --single-run",
"test-travis-ci": "npm run -s lint-ci && karma start test/karma.travis-ci.conf.js",
"test": "karma start test/karma.conf.js --auto-watch"
},
"main": "",
"directories": {
"test": "test"
}
}