forked from white-ubuntu/GitHunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.46 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
{
"name": "githunt",
"version": "1.0.0",
"description": "Example app for Apollo",
"main": "index.js",
"scripts": {
"extractgql": "extractgql ui --add_typename",
"start-app-client": "webpack-dev-server -d --hot --inline --no-info --port 3020",
"start-app-server": "webpack --progress && nodemon server_bundle.js",
"start": "concurrently \"npm run start-app-client\" \"npm run start-app-server\"",
"lint": "eslint ui",
"build": "webpack -p --progress --config ./webpack.production.config.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/GitHunt.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/GitHunt/issues"
},
"homepage": "https://github.com/apollostack/GitHunt#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"concurrently": "^3.0.0",
"css-loader": "^0.26.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"html-webpack-plugin": "^2.22.0",
"nodemon": "^1.9.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"apollo-client": "^0.6.0",
"classnames": "^2.2.5",
"express": "^4.14.0",
"graphql-anywhere": "^2.0.0",
"graphql-tag": "^1.2.1",
"extractgql": "^0.2.1",
"http-proxy-middleware": "^0.17.1",
"immutability-helper": "^2.1.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"node-emoji": "^1.3.0",
"react": "^15.1.0",
"react-apollo": "^0.8.1",
"react-dom": "^15.1.0",
"react-ga": "^2.1.0",
"react-router": "^3.0.0",
"react-timeago": "^3.0.0",
"redux": "^3.5.2",
"subscriptions-transport-ws": "^0.3.0"
},
"eslintConfig": {
"env": {
"node": true,
"browser": true,
"mocha": true
},
"extends": "airbnb",
"globals": {
"ga": true
},
"rules": {
"camelcase": 0,
"react/jsx-filename-extension": 0,
"react/no-unused-prop-types": [
2,
{
"skipShapeProps": true
}
]
}
}
}