forked from yatsu/react-apollo-koa-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.62 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.62 KB
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
118
119
120
121
122
123
124
125
126
{
"name": "react-apollo-koa-example",
"version": "0.1.0",
"description": "An example app using React, Apollo and Koa",
"repository": "https://github.com/yatsu/react-apollo-koa-example.git",
"license": "MIT",
"author": "Masaki Yatsu <yatsu@yatsu.info>",
"private": true,
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-react-app": "^0.6.2",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.43.1",
"flow-typed": "^2.0.0",
"husky": "^0.13.2",
"lint-staged": "^3.4.0",
"mocha": "^3.2.0",
"nightmare": "^2.10.0",
"nodemon": "^1.11.0",
"prettier-eslint-cli": "^3.2.0",
"react-app-rewired": "^0.6.0",
"react-scripts": "0.9.5",
"storyshots": "^3.2.2",
"stylefmt": "^5.3.2",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0"
},
"dependencies": {
"apollo-client": "^1.0.0-rc.4",
"classnames": "^2.2.5",
"debug": "^2.6.3",
"dotenv": "^4.0.0",
"empty": "^0.10.1",
"graphql": "^0.9.1",
"graphql-anywhere": "^3.0.1",
"graphql-fragments": "^0.1.0",
"graphql-server-koa": "^0.6.0",
"graphql-subscriptions": "^0.3.1",
"graphql-tag": "^1.3.1",
"graphql-tools": "^0.10.0",
"jsonwebtoken": "^7.3.0",
"jwt-decode": "^2.1.0",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.1",
"koa-passport": "^3.0.0",
"koa-router": "^7.0.1",
"passport-facebook": "^2.1.1",
"passport-google-oauth2": "^0.1.6",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"persistgraphql": "^0.3.1",
"prop-types": "^15.5.3",
"ramda": "^0.23.0",
"react": "^15.5.3",
"react-addons-test-utils": "^15.5.1",
"react-apollo": "^1.0.0-rc.3",
"react-dom": "^15.5.3",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-auth-wrapper": "^1.0.0",
"redux-logic": "^0.11.9",
"rxjs": "^5.0.3",
"semantic-ui-react": "^0.67.1",
"subscriptions-transport-ws": "^0.5.5-alpha.0",
"uuid": "^3.0.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"mocha": "NODE_ENV=test mocha",
"lint": "eslint src koa",
"flow": "flow",
"stylelint": "stylelint src/**/*.css",
"format": "prettier-eslint --write 'src/**/*.js' 'koa/**/*.js'",
"precommit": "lint-staged && ./pre-commit-extra",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"persistgraphql": "persistgraphql src/graphql --add_typename",
"server": "nodemon server.js",
"caddy": "caddy",
"console": "NODE_ENV=development babel-node --presets react-app"
},
"lint-staged": {
"src/**/*.js": [
"prettier-eslint --write",
"lint",
"flow force-recheck",
"git add"
],
"test/**/*.js": [
"prettier-eslint --write",
"lint",
"flow force-recheck",
"git add"
],
"src/**/*.css": [
"stylefmt",
"stylelint",
"git add"
],
"koa/**/*.js": [
"prettier-eslint --write",
"lint",
"flow force-recheck",
"git add"
]
}
}