-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 2 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
{
"name": "react-lambda",
"version": "0.3.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "3.1.2",
"@google/maps": "1.0.1",
"apollo-boost": "^0.4.4",
"apollo-server-lambda": "^2.9.5",
"bootstrap": "4.3.1",
"encoding": "0.1.12",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-prettier": "3.1.1",
"graphql": "^14.5.8",
"graphql-tag": "2.10.1",
"http-proxy-middleware": "0.20.0",
"mongodb": "^3.3.2",
"netlify-identity-widget": "1.5.5",
"polyline-extended": "1.1.1",
"prettier": "1.18.2",
"react": "^16.10.2",
"react-apollo": "^3.1.2",
"react-dom": "^16.10.2",
"react-router-dom": "5.1.2",
"react-scripts": "3.2.0",
"react-select": "3.0.8"
},
"scripts": {
"start": "react-scripts start",
"start:lambda": "netlify-lambda serve src/lambda",
"build": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"schema:publish": "apollo schema:publish --endpoint=http://localhost:9000/graphql",
"schema:start-and-publish": "start-server-and-test start:lambda http-get://localhost:9000/graphql?query={__typename} schema:publish",
"schema:check": "apollo schema:check --endpoint=http://localhost:9000/graphql",
"schema:start-and-check": "start-server-and-test start:lambda http-get://localhost:9000/graphql?query={__typename} schema:check"
},
"devDependencies": {
"apollo": "^2.19.0",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "1.7.0",
"netlify-lambda": "^1.6.3",
"start-server-and-test": "^1.10.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}