This repository has been archived by the owner on Apr 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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
{
"name": "curation-tools-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.6",
"@graphql-codegen/cli": "^1.20.1",
"@graphql-codegen/typescript": "^1.20.2",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.1",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"aws-appsync-auth-link": "^3.0.2",
"aws-appsync-subscription-link": "^3.0.3",
"faker": "^5.1.0",
"graphql": "^15.4.0",
"json-graphql-server": "^2.2.0",
"json-schema-faker": "^0.5.0-rcv.32",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-hook-form": "^6.14.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"typescript": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"api:generate-data": "node local-api-server/generateData.js",
"api:start": "json-graphql-server local-api-server/db.json --p 4000",
"api:generate-types": "graphql-codegen --config local-api.codegen.yml"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"prettier": "^2.2.1"
}
}