forked from rubyforgood/inkind-volunteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
74
75
76
77
78
79
80
{
"name": "inkind-volunteer",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^16.13",
"yarn": "^1.12.15"
},
"dependencies": {
"@apollo/client": "^3.4.17",
"@craco/craco": "^6.1.2",
"@testing-library/jest-dom": "^5.15",
"@testing-library/react": "^12.1",
"@testing-library/user-event": "^13.5",
"@types/jest": "^27.0",
"@types/node": "^16.11",
"@types/react": "^17.0.34",
"@types/react-datepicker": "^4.3",
"@types/react-dom": "^17.0.11",
"apollo": "^2.33.9",
"autoprefixer": "^9",
"classnames": "^2.3.1",
"graphql": "15.7.2",
"msw": "^0.35.0",
"node-sass": "6.0.1",
"postcss": "^7",
"react": "^17.0.2",
"react-datepicker": "^4.3.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.4",
"react-query": "^3.16.0",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "4.4.4",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"eslint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"check-types": "tsc",
"lint": "yarn run eslint && yarn run check-types",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"format": "yarn run prettier -- --write",
"check-format": "yarn run prettier -- --list-different",
"validate": "yarn-run-all --parallel check-types check-format lint build",
"schema": "apollo service:download --endpoint=http://localhost:3001/graphql external/graphql/schema.json; apollo codegen:generate --localSchemaFile=./external/graphql/schema.json --target=typescript"
},
"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"
]
},
"devDependencies": {
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-sonarjs": "^0.10.0"
},
"msw": {
"workerDirectory": "public"
}
}