-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"name": "client-app",
"version": "0.1.0",
"private": true,
"main": "nextServer.js",
"scripts": {
"dev": "concurrently \"tsc --watch --noEmit --skipLibCheck\" \"next dev\"",
"build": "next build",
"start": "next start -p $PORT",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"generate": "graphql-codegen --config codegen.js -r dotenv/config ./.env",
"deploy": "firebase deploy --only functions:nextServer,hosting",
"ts": "tsc --noEmit --skipLibCheck --pretty"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@chakra-ui/icons": "^1.0.9",
"@chakra-ui/react": "^1.1.4",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "^2.2.4",
"@hookform/resolvers": "^2.3.0",
"@types/json2csv": "^5.0.3",
"@types/node": "^14.14.13",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.0",
"@types/react-bootstrap-typeahead": "^5.1.7",
"@types/react-datepicker": "^3.1.8",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-imgix": "^9.0.4",
"@types/uuid": "^8.3.1",
"@types/yup": "^0.29.11",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"chakra-ui-autocomplete": "^1.3.0",
"date-fns": "^2.21.1",
"firebase": "^8.3.2",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.18.1",
"framer-motion": "^3.10.5",
"graphql": "^15.5.0",
"json2csv": "^5.0.6",
"lodash": "^4.17.21",
"next": "10.0.3",
"next-compose-plugins": "^2.2.1",
"papaparse": "^5.3.2",
"prettier": "^2.2.1",
"react": "17.0.1",
"react-bootstrap-typeahead": "^5.2.0",
"react-datepicker": "^3.7.0",
"react-dom": "17.0.1",
"react-firebase-hooks": "^3.0.3",
"react-firebaseui": "^5.0.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.0.7",
"react-icons": "^4.2.0",
"react-image-lightbox": "^5.1.4",
"react-imgix": "^9.2.0",
"subscriptions-transport-ws": "^0.11.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"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"
}
}