forked from gyliu513/dcos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "dcos-ui",
"version": "1.1.14",
"description": "User Interface of the DCOS",
"main": "js/index.js",
"keywords": [
"services",
"modules",
"mesos",
"mesosphere",
"datacenter",
"os"
],
"repository": {
"type": "git",
"url": "https://github.com/mesosphere/dcos-ui"
},
"engines": {
"node": "4.x.x",
"npm": "3.x.x"
},
"config": {
"port": 4200,
"externalplugins": ""
},
"dependencies": {
"browser-info": "0.4.0",
"canvas-ui": "0.2.1",
"classnames": "2.2.3",
"clipboard": "1.5.10",
"cookie": "0.2.3",
"d3": "3.5.16",
"dcos-dygraphs": "1.1.0-beta.3",
"deep-equal": "1.0.1",
"flux": "2.1.1",
"less-color-lighten": "0.0.1",
"md5": "2.1.0",
"mesosphere-shared-reactjs": "0.0.14",
"moment": "2.13.0",
"query-string": "4.1.0",
"react": "0.14.7",
"react-ace": "3.4.1",
"react-addons-css-transition-group": "0.14.7",
"react-addons-test-utils": "0.14.7",
"react-dom": "0.14.7",
"react-gemini-scrollbar": "2.1.0",
"react-redux": "4.4.0",
"react-router": "0.13.5",
"reactjs-components": "0.14.0-beta.23",
"reactjs-mixin": "0.0.2",
"redux": "3.3.1",
"tv4": "1.2.7",
"underscore": "1.7.0"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"babel": "6.5.2",
"babel-cli": "6.8.0",
"babel-core": "6.8.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-runtime": "6.8.0",
"babel-polyfill": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-jest": "12.0.2",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-register": "6.8.0",
"babel-runtime": "6.6.1",
"css-loader": "0.23.1",
"eslint": "2.0.0",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "2.6.4",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"gulp": "3.9.1",
"gulp-connect": "3.2.2",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.16.0",
"image-webpack-loader": "1.7.0",
"jasmine-reporters": "2.1.1",
"jest-cli": "12.0.2",
"jest-webpack-alias": "2.3.0",
"json-loader": "0.5.4",
"less": "2.6.1",
"less-loader": "2.2.3",
"license-checker": "5.1.2",
"localStorage": "1.0.3",
"marked": "0.3.5",
"node-libs-browser": "1.0.0",
"postcss": "5.0.21",
"postcss-loader": "0.8.2",
"purify-css": "1.1.9",
"react-hot-loader": "1.3.0",
"source-map-loader": "0.1.5",
"string-replace-webpack-plugin": "0.0.3",
"style-loader": "0.13.1",
"transform-loader": "0.2.3",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1",
"webpack-notifier": "1.3.0"
},
"scripts": {
"clean": "rm -rf dist",
"shrinkwrap": "npm shrinkwrap --dev && ./node_modules/.bin/gulp fixShrinkwrap",
"prebuild-assets": "./node_modules/.bin/gulp checkDependencies && npm install compression-webpack-plugin@latest",
"build-assets": "npm run clean && NODE_ENV=production webpack --config ./webpack/webpack.production.babel.js",
"postbuild-assets": "rm -rf node_modules/compression-webpack-plugin",
"build": "npm run lint && npm test && npm run build-assets",
"build-with-external-plugins": "npm run lint && npm run lint-plugins && npm test && npm run build-assets",
"lint": "bash -c 'opts=$@ ; if [[ $# -lt 1 ]]; then opts=\"src/\\*\\*/\\*.js\"; fi ; ./node_modules/.bin/eslint --quiet ${opts}' 0",
"lint-plugins": "PLUGINS=$npm_config_externalplugins; npm run lint -- \"$PLUGINS/**/*.js\"",
"prebuild": "./scripts/validate-tests",
"serve": "npm run build-assets && ./node_modules/.bin/gulp serve",
"serve-notify": "export NOTIFY=true && npm run serve",
"scaffold": "./node_modules/.bin/gulp ensureConfig && ./node_modules/.bin/gulp ensureDevProxy",
"start": "NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.babel.js --hot --progress --colors --content-base ./build --port $npm_package_config_port",
"test": "node jest/gen-config.js && NODE_PATH=node_modules jest --config=jest/config.json --no-cache",
"testing": "NODE_ENV=testing webpack-dev-server --config ./webpack/webpack.dev.babel.js --progress --colors --content-base ./build --port $npm_package_config_port"
},
"jest-webpack-alias": {
"configFile": "./webpack/webpack.test.js"
}
}