forked from white-ubuntu/GitHunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.83 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
{
"name": "githunt",
"version": "2.0.0",
"description": "Example app for Apollo",
"main": "index.js",
"scripts": {
"start": "node build/server/bundle.js",
"build": "rm -rf build && NODE_ENV=production webpack --progress --config webpack.config.server.js && NODE_ENV=production webpack --progress --config webpack.config.client.js",
"postinstall": "npm run build",
"dev": "NODE_ENV=development concurrently -c blue,cyan,magenta \"webpack --watch --config webpack.config.server.js\" \"sleep 3 && nodemon --watch build/server build/server/bundle.js\" \"webpack-dev-server -d --hot --inline --no-info --port 3020 --config webpack.config.client.js\"",
"lint": "eslint ui",
"lint:fix": "eslint --fix ui",
"test": "npm run lint",
"persistgraphql": "persistgraphql ui --add_typename",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/GitHunt.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/GitHunt/issues"
},
"homepage": "https://github.com/apollographql/GitHunt#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react-native": "^4.0.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-prettier": "^2.6.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"graphql-tag": "^1.3.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"nodemon": "^1.9.2",
"prettier": "^1.7.4",
"style-loader": "^0.19.0",
"webpack": "2.2.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"apollo-cache-inmemory": "^0.2.0-rc.0",
"apollo-client": "2.0.0-rc.3",
"apollo-link": "^0.8.0",
"apollo-link-error": "^0.2.0",
"apollo-link-http": "^0.8.0",
"apollo-link-ws": "^0.6.0",
"apollo-utilities": "^0.1.1-0",
"classnames": "^2.2.5",
"express": "^4.14.0",
"graphql": "^0.11.7",
"graphql-anywhere": "^3.1.0",
"http-proxy-middleware": "^0.17.1",
"immutability-helper": "^2.1.0",
"node-emoji": "^1.3.0",
"node-fetch": "^1.7.3",
"persistgraphql": "^0.3.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-apollo": "^2.0.0-beta.0",
"react-dom": "^16.0.0",
"react-ga": "^2.1.0",
"react-native-web": "^0.1.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-timeago": "^3.0.0",
"subscriptions-transport-ws": "^0.7.0"
}
}