-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
105 lines (105 loc) · 2.65 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
{
"name": "mesos-ui",
"version": "0.1.0",
"description": "A UI for Mesos built on React.JS.",
"license": "MIT",
"bugs": {
"url": "https://github.com/capgemini/mesos-ui/issues"
},
"homepage": "https://github.com/capgemini/mesos-ui",
"keywords": [
"mesos",
"apache",
"ui",
"react"
],
"private": true,
"engines": {
"node": ">= 4.1.2",
"npm": ">= 2.14"
},
"dependencies": {
"node-zookeeper-client": "0.2.2",
"array-find": "~1.0.0",
"babel": "5.8.23",
"babel-plugin-flow-comments": "~1.0.9",
"classnames": "2.1.3",
"d3": "~3.5.6",
"eventemitter3": "1.1.0",
"exenv": "~1.2.0",
"express": "4.13.3",
"fastclick": "1.0.6",
"flux": "2.1.1",
"is-plain-object": "~2.0.1",
"lodash": "3.10.1",
"material-ui": "0.11.1",
"node-sass": "~3.3.0",
"normalize.css": "3.0.3",
"object-assign": "~4.0.1",
"radium": "~0.14.1",
"react": "0.13.3",
"react-motion": "^0.3.0",
"react-router": "0.13.3",
"react-tap-event-plugin": "0.1.7",
"sass-loader": "~1.0.3",
"source-map-support": "0.3.2",
"superagent": "1.4.0",
"history": "1.12.0",
"envify": "3.4.0",
"express-http-proxy": "0.6.0",
"transform-loader": "0.2.3"
},
"devDependencies": {
"autoprefixer-core": "~5.2.0",
"babel-core": "~5.8.25",
"babel-eslint": "~4.1.7",
"babel-loader": "~5.3.2",
"browser-sync": "~2.9.6",
"css-loader": "~0.18.0",
"csscomb": "~3.1.8",
"del": "~2.0.2",
"eslint": "~1.5.0",
"eslint-loader": "~1.0.0",
"eslint-plugin-react": "~3.0.0",
"gulp": "~3.9.0",
"gulp-changed": "~1.3.0",
"gulp-if": "~1.2.5",
"gulp-load-plugins": "~0.10.0",
"gulp-eslint": "1.0.0",
"gulp-jshint": "1.11.2",
"jshint-stylish": "2.0.1",
"gulp-rename": "~1.2.2",
"gulp-size": "~2.0.0",
"gulp-util": "~3.0.6",
"jest-cli": "0.5.7",
"babel-jest": "5.3.0",
"json-server": "~0.8.0",
"minimist": "~1.2.0",
"mkdirp": "^0.5.1",
"postcss": "~5.0.6",
"postcss-loader": "~0.6.0",
"psi": "~1.0.6",
"run-sequence": "~1.1.3",
"style-loader": "~0.12.4",
"url-loader": "~0.5.6",
"webpack": "~1.12.2"
},
"jest": {
"rootDir": "./src",
"collectCoverage": true,
"scriptPreprocessor": "../node_modules/babel-jest",
"unmockedModulePathPatterns": [
"react"
]
},
"scripts": {
"start": "node ./build/server.js",
"lint": "gulp lint && csscomb src/components --lint",
"comb": "csscomb src/components --verbose",
"test": "eslint ./src && jest",
"coverage": "jest --coverage",
"build": "gulp build",
"serve": "gulp serve",
"sync": "gulp sync"
}
}