This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
115 lines (115 loc) · 3.4 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
{
"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 <[email protected]>",
"private": true,
"devDependencies": {
"@storybook/addon-actions": "^3.2.0",
"@storybook/addon-storyshots": "3.1.9",
"@storybook/react": "3.1.9",
"babel-cli": "^6.24.1",
"babel-eslint": "7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.2.0",
"flow-bin": "^0.52.0",
"flow-typed": "^2.1.5",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"nightmare": "^2.10.0",
"nodemon": "^1.11.0",
"prettier-eslint-cli": "^4.1.1",
"react-addons-test-utils": "^15.6.0",
"react-app-rewired": "^1.1.0",
"react-test-renderer": "^15.6.1",
"redux-logic-test": "^1.0.5",
"stylefmt": "^6.0.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"uuid": "^3.1.0"
},
"dependencies": {
"apollo-client": "^1.9.1",
"classnames": "^2.2.5",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"empty": "^0.10.1",
"graphql": "^0.10.5",
"graphql-anywhere": "^3.1.0",
"graphql-fragments": "^0.1.0",
"graphql-server-koa": "^1.1.2",
"graphql-subscriptions": "^0.4.4",
"graphql-tag": "^2.4.2",
"graphql-tools": "^1.2.3",
"jsonwebtoken": "^7.4.2",
"jwt-decode": "^2.2.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.0.1",
"koa-router": "^7.2.1",
"ms": "^2.0.0",
"persistgraphql": "^0.3.10",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"react-scripts": "1.0.11",
"redux": "^3.7.2",
"redux-auth-wrapper": "^2.0.1",
"redux-logic": "^0.12.2",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"rxjs": "^5.4.2",
"semantic-ui-react": "^0.71.3",
"simple-oauth2": "^1.3.0",
"subscriptions-transport-ws": "^0.8.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"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; mv extracted_queries.json src",
"server": "nodemon server.js",
"console": "NODE_ENV=development babel-node --presets react-app"
},
"proxy": "http://localhost:7000",
"lint-staged": {
"src/**/*.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"
]
}
}