This repository has been archived by the owner on Nov 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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
{
"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.3",
"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.5"
},
"dependencies": {
"antd": "^3.10.0",
"apollo-boost": "0.1.16",
"apollo-client": "2.4.2",
"apollo-client-preset": "1.0.8",
"apollo-link": "1.2.3",
"apollo-link-context": "^1.0.9",
"apollo-link-http": "^1.5.5",
"apollo-link-ws": "1.0.9",
"apollo-utilities": "1.0.21",
"babel-cli": "6.26.0",
"eslint-config-prettier": "2.10.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-prettier": "2.7.0",
"graphql": "0.13.2",
"graphql-tag": "2.10.0",
"moment": "^2.22.2",
"react": "16.5.2",
"react-apollo": "2.2.4",
"react-dom": "16.5.2",
"react-modal": "3.6.1",
"react-router-dom": "4.3.1",
"subscriptions-transport-ws": "0.9.15",
"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"
}
}