-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 3.26 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
{
"name": "jenkins-plugin-site",
"version": "0.0.1",
"description": "Boilerplate for kick starting a React Project with ES6 (Babel) and Hot reloader using Webpack.",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"docker": "NODE_ENV=docker npm start",
"test": "mocha --require ignore-styles --compilers js:babel-core/register --recursive",
"test:debug": "npm test -- --debug-brk",
"test:watch": "npm test -- --watch --reporter min",
"clean": "rm npm-debug.log.*",
"integrity": "npm run lint && npm test",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "npm run lint -- --fix",
"watch": "watch -b -n 15 npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/jenkins-infra/plugin-site.git"
},
"keywords": [
"jenkins-ci",
"plugins",
"es6",
"babel",
"webpack"
],
"author": "Thorsten Scherler <https://github.com/scherler>",
"contributors": [
{
"name": "Vasa",
"email": "https://github.com/vasanthk aka vasanthk"
},
{
"name": "gusreiber",
"email": "https://github.com/gusreiber)"
},
{
"name": "Nathaniel Charles",
"email": "https://github.com/oepn aka oepn"
},
{
"name": "Thorsten Scherler",
"email": "https://github.com/scherler aka scherler"
},
{
"name": "R. Tyler Croy",
"email": "https://github.com/rtyler aka rtyler "
}
],
"license": "MIT",
"bugs": {
"url": "https://issues.jenkins-ci.org/secure/RapidBoard.jspa?rapidView=1&projectKey=WEBSITE&view=detail"
},
"homepage": "http://plugins.jenkins-ci.org/",
"dependencies": {
"async": "1.5.2",
"classnames": "2.2.3",
"history": "2.0.0",
"immutable": "3.7.6",
"keymirror": "0.1.1",
"lodash": "4.2.0",
"moment": "2.11.1",
"mongoose": "4.4.4",
"mongoose-paginate": "5.0.0",
"node-schedule": "1.0.0",
"react": "^0.14.7",
"react-dom": "0.14.5",
"react-pure-render": "1.0.2",
"react-redux": "4.0.6",
"react-router": "2.0.0",
"redux": "3.0.5",
"redux-search": "2.0.0",
"redux-thunk": "1.0.3",
"reselect": "2.0.2",
"script-loader": "0.6.1",
"targetenv": "1.0.0"
},
"devDependencies": {
"auto-prefixer": "0.4.2",
"babel": "6.3.26",
"babel-core": "6.3.26",
"babel-eslint": "5.0.0-beta10",
"babel-loader": "6.2.0",
"babel-plugin-react-transform": "2.0.0",
"babel-plugin-transform-runtime": "6.3.13",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-runtime": "6.3.19",
"chai": "3.5.0",
"css-loader": "0.23.1",
"cssnext": "1.8.4",
"cssnext-loader": "1.0.1",
"eslint": "^2.2.0",
"eslint-plugin-react": "^4.1.0",
"expect": "1.14.0",
"express": "4.13.4",
"extract-text-webpack-plugin": "1.0.1",
"faker": "3.0.1",
"fs": "0.0.2",
"html-webpack-plugin": "2.7.1",
"ignore-styles": "1.2.0",
"mocha": "2.4.5",
"path": "0.12.7",
"react-addons-test-utils": "0.14.7",
"react-transform-hmr": "1.0.1",
"request": "2.69.0",
"style-loader": "0.13.0",
"stylus-loader": "1.4.3",
"watch": "0.17.1",
"webpack": "1.12.10",
"webpack-dev-server": "1.14.0"
}
}