-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 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
{
"name": "react-apollo-instagram-example",
"version": "0.0.1",
"private": true,
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.18.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"jwt-decode": "^2.2.0",
"prettier-eslint-cli": "4.7.1",
"react-scripts": "1.1.1"
},
"dependencies": {
"antd": "^3.3.0",
"apollo-client": "2.2.5",
"apollo-client-preset": "1.0.8",
"apollo-link": "1.1.0",
"apollo-link-ws": "^1.0.5",
"apollo-utilities": "^1.0.8",
"babel-cli": "^6.26.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-prettier": "^2.3.1",
"graphql": "0.13.1",
"graphql-tag": "2.7.3",
"graphql-tools": "^2.23.1",
"react": "^16.2.0",
"react-apollo": "2.0.4",
"react-dom": "^16.2.0",
"react-event-timeline": "^1.5.1",
"react-modal": "3.2.1",
"react-router-dom": "4.2.2",
"react-router-transition": "^1.2.1",
"react-transition-group": "^2.2.1",
"subscriptions-transport-ws": "^0.9.5",
"tachyons": "4.9.1",
"uniforms": "^1.23.1",
"uniforms-antd": "^1.23.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"
}
}