-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "react-apollo-realworld-example-app",
"version": "0.1.0",
"description": "Exemplary real world application built with React + Apollo",
"author": "Donatas Stundys <donatas.stundys@gmail.com>",
"private": true,
"dependencies": {
"@apollo/react-components": "^4.0.0",
"@apollo/react-hoc": "^4.0.0",
"@apollo/react-hooks": "^4.0.0",
"apollo-boost": "^0.4.9",
"apollo-client": "^2.6.3",
"classnames": "^2.2.6",
"cross-env": "^7.0.3",
"date-fns": "^2.23.0",
"formik": "^2.2.9",
"graphql": "^15.5.3",
"graphql-tag": "^2.9.2",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"raven-js": "^3.26.3",
"react": "^17.0.2",
"react-apollo": "3.1.5",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-infinite-scroller": "^1.2.0",
"react-markdown": "^7.0.1",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3"
},
"scripts": {
"start": "cross-env PORT=4000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint ."
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"graphql-cli": "^4.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}