forked from graphql-boilerplates/react-fullstack-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "react-apollo-instagram-example",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-eslint": "7.2.3",
"eslint": "4.19.1",
"eslint-config-react-app": "2.1.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.11.1",
"jwt-decode": "2.2.0",
"prettier-eslint-cli": "4.7.1",
"react-scripts": "1.1.4"
},
"dependencies": {
"apollo-boost": "0.1.14",
"apollo-client": "2.4.0",
"apollo-client-preset": "1.0.8",
"apollo-link": "1.2.2",
"apollo-link-ws": "1.0.8",
"apollo-utilities": "1.0.19",
"babel-cli": "6.26.0",
"eslint-config-prettier": "2.10.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-prettier": "2.6.2",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"react": "16.4.2",
"react-apollo": "2.1.11",
"react-dom": "16.4.2",
"react-modal": "3.5.1",
"react-router-dom": "4.3.1",
"subscriptions-transport-ws": "0.9.14",
"tachyons": "4.11.1"
},
"scripts": {
"precommit": "yarn run lint && yarn run flow",
"flow": "flow",
"lint": "eslint .",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier-eslint --write \"src/**/*.+(js|jsx)\"",
"prettier-dry-run": "prettier-eslint \"src/**/*.+(js|jsx)\" -l debug"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}