forked from atherdon/dash-upload-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
{
"name": "dash-form",
"version": "0.1.7",
"private": true,
"dependencies": {
"@apollo/client": "3.3.15",
"@apollo/react-hooks": "4.0.0",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "13.1.9",
"@types/jest": "26.0.23",
"@types/node": "12.20.12",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"express": "4.17.1",
"graphql": "15.5.0",
"graphql-tag": "2.12.4",
"graphql.macro": "1.4.2",
"node-sass": "5.0.0",
"react": "17.0.2",
"react-apollo": "3.1.5",
"react-apollo-form": "0.1.8",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"sass": "1.32.10",
"semantic-ui-react": "2.0.3",
"typescript": "4.2.4",
"web-vitals": "1.1.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@types/react-helmet": "6.1.0",
"@types/react-jsonschema-form": "1.7.4",
"@types/react-router-dom": "5.1.7",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.2.1"
},
"scripts": {
"start": "NODE_ENV=production node ./server.js",
"start:local": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --config .eslint.json",
"form": "react-apollo-form fetch-mutations http://localhost:5000 $(pwd)/src/generatedForm",
"codegen": "graphql-codegen --config ./codegen.yml"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}