-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
{
"name": "gerrit-mobile",
"version": "0.0.1",
"description": "Mobile view of Gerrit code review",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "npm run start & webpack-dev-server -d --progress --colors --content-base public/",
"dev2": "webpack-dev-server -d --progress --colors --content-base public/",
"lint": "eslint --ext .js app app.js server",
"pack": "webpack -d --progress --colors",
"pack:prod": "webpack -p --progress --colors --define process.env.NODE_ENV='\"production\"'",
"test": "karma start",
"test:watch": "karma start --single-run=false"
},
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/michaelbrewerdavis/gerrit-mobile.git"
},
"dependencies": {
"dotenv": "^2.0.0",
"express": "^4.13.4",
"http-proxy": "^1.13.2"
},
"devDependencies": {
"autosize": "^3.0.16",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"bootstrap": "^3.3.6",
"classnames": "^2.2.5",
"cookie": "^0.3.1",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.4.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.20.2",
"immutable": "^3.8.0",
"jquery": "^2.2.3",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-linkify": "^0.1.1",
"react-redux": "^4.4.5",
"react-router": "^2.3.0",
"react-router-redux": "^4.0.2",
"redux": "^3.4.0",
"redux-actions": "^0.10.0",
"redux-immutable": "^3.0.6",
"redux-thunk": "^2.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}