-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.55 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
81
82
83
84
85
86
87
88
89
{
"name": "voting-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.10",
"@apollo/link-context": "^2.0.0-beta.3",
"@auth0/auth0-react": "^1.3.0",
"@auth0/auth0-spa-js": "^1.14.0",
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@fontsource/lora": "^4.5.13",
"@fontsource/open-sans": "^4.5.14",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.13",
"@types/react-router-dom": "^5.1.7",
"date-fns": "^2.23.0",
"file-saver": "^2.0.5",
"framer-motion": "^3.0.0",
"graphql": "^15.5.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.1.0",
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.1",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"react-spinners": "^0.11.0",
"react-textarea-autosize": "^8.3.3",
"subscriptions-transport-ws": "^0.9.19",
"typescript": "4.5.5",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cypress run",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint-fix": "eslint --fix 'src/**/*.{js,ts,tsx}'",
"format": "prettier --write 'src/*.{js,jsx,ts,tsx}'",
"eject": "react-scripts eject",
"generate": "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"
]
},
"devDependencies": {
"@cypress/react": "^5.12.4",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-operations": "2.3.2",
"@graphql-codegen/typescript-react-apollo": "3.2.8",
"@types/qrcode.react": "^1.0.2",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-datepicker": "^4.3.4",
"@types/uuid": "^8.3.0",
"chromatic": "^6.5.1",
"cypress": "^9.5.1",
"eslint-config-prettier": "^8.1.0"
},
"resolutions": {
"react-scripts/eslint-webpack-plugin": "2.3.0",
"babel-loader": "8.1.0"
}
}