-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
129 lines (129 loc) · 3.58 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
124
125
126
127
128
129
{
"name": "dcos-installer-ui",
"version": "1.0.0",
"description": "Mesosphere DCOS Installer UI",
"main": "./bin/www",
"author": "Mesosphere Web Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mesosphere/dcos-installer.git"
},
"dependencies": {
"body-parser": "1.13.2",
"canvas-ui": "0.2.1",
"classnames": "2.2.1",
"debug": "2.2.0",
"flux": "2.1.1",
"history": "1.17.0",
"less-color-lighten": "0.0.1",
"lodash": "4.0.0",
"mesosphere-shared-reactjs": "0.0.14",
"react": "0.14.6",
"react-addons-css-transition-group": "0.14.6",
"react-dom": "0.14.6",
"react-gemini-scrollbar": "2.1.0",
"react-router": "2.0.0-rc5",
"reactjs-components": "0.14.0-beta.18",
"reactjs-mixin": "0.0.2",
"redux": "3.3.1",
"statics": "0.1.0",
"underscore": "1.7.0",
"zxcvbn": "4.2.0"
},
"devDependencies": {
"babel": "6.3.26",
"babel-cli": "6.4.0",
"babel-core": "6.4.5",
"babel-jest": "6.0.1",
"babel-loader": "6.2.2",
"babel-plugin-transform-runtime": "6.4.3",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-runtime": "6.3.19",
"browser-sync": "2.7.13",
"del": "2.2.0",
"envify": "3.4.0",
"eslint": "1.10.3",
"eslint-plugin-react": "3.13.1",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-changed": "1.3.0",
"gulp-connect": "2.3.1",
"gulp-cssnano": "2.1.0",
"gulp-eslint": "1.1.1",
"gulp-if": "2.0.0",
"gulp-less": "3.0.2",
"gulp-replace": "0.5.3",
"gulp-sourcemaps": "1.5.2",
"gulp-uglify": "1.2.0",
"gulp-util": "3.0.6",
"jest-cli": "0.8.2",
"jest-webpack-alias": "2.2.0",
"json-loader": "0.5.4",
"jsx-loader": "0.13.2",
"mkdirp": "0.5.1",
"node-libs-browser": "0.5.2",
"react-addons-test-utils": "0.14.6",
"run-sequence": "1.1.5",
"source-map-loader": "0.1.5",
"transform-loader": "0.2.3",
"webpack": "1.10.1"
},
"scripts": {
"clean": "rm -rf dist",
"dist":
"npm test && npm run clean && NODE_ENV='production' ./node_modules/.bin/gulp dist",
"serve": "NODE_ENV='development' ./node_modules/.bin/gulp serve",
"livereload": "NODE_ENV='development' ./node_modules/.bin/gulp livereload",
"test": "./node_modules/.bin/gulp copy:external-plugins && jest",
"shrinkwrap":
"npm shrinkwrap --dev && ./node_modules/.bin/gulp fixShrinkwrap"
},
"jest-webpack-alias": {
"configFile": ".webpack.config.js"
},
"jest": {
"globals": {
"__DEV__": true
},
"scriptPreprocessor": "jest/preprocessor.js",
"moduleFileExtensions": ["js", "json", "es6"],
"modulePathIgnorePatterns": ["/tmp/", "/node_modules/", "/.module-cache/"],
"unmockedModulePathPatterns": [
"babel-runtime",
"browser-info",
"classnames",
"core-js",
"d3",
"events",
"flux",
"lodash",
"jasmine-reporters",
"localStorage",
"mesosphere-shared-reactjs",
"md5",
"mixins/index",
"src/js/config/",
"src/js/constants",
"src/js/plugin-bridge/AppReducer",
"src/js/plugin-bridge/Hooks",
"src/js/plugin-bridge/middleware",
"src/js/plugin-bridge/PluginSDK",
"src/js/plugin-bridge/PluginTestUtils",
"src/js/structs",
"src/js/utils",
"src/js/stores",
"src/js/mixins",
"plugins",
"react",
"reactjs-components",
"reactjs-mixin",
"react-router",
"redux",
"underscore",
"react-addons-test-utils"
],
"testPathIgnorePatterns": ["/node_modules/"]
}
}