-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 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
90
91
92
93
94
95
96
{
"name": "euro2020",
"version": "1.1.0",
"scripts": {
"dev": "blitz dev",
"build-without-db": "blitz build",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma",
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seeds.ts"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "tsc && npm run lint && npm run test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@blitzjs/auth": "2.0.10",
"@blitzjs/next": "2.0.10",
"@blitzjs/rpc": "2.0.10",
"@chakra-ui/icons": "2.0.12",
"@chakra-ui/react": "2.4.1",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@popperjs/core": "2.9.2",
"@prisma/client": "4.6.1",
"blitz": "2.0.10",
"dayjs": "1.10.4",
"eventemitter3": "4.0.7",
"final-form": "4.20.2",
"framer-motion": "7.6.7",
"i18next": "^23.11.2",
"next": "14.1.4",
"node-fetch": "2",
"nodemailer": "6.6.1",
"passport": "0.4.1",
"passport-facebook": "3.0.0",
"passport-google-oauth20": "2.0.0",
"prisma": "4.6.1",
"react": "18.2.0",
"react-datepicker": "3.7.0",
"react-dom": "18.2.0",
"react-final-form": "6.5.3",
"react-ga": "3.3.0",
"react-i18next": "^14.1.1",
"react-icons": "4.2.0",
"react-modal": "3.13.1",
"react-popper": "2.2.5",
"secure-password": "4.0.0",
"zod": "3.20.2"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.8",
"@next/env": "13.4.19",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.42.1",
"eslint": "8.27.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "11.3.0-beta.2",
"prettier": "2.7.1",
"prettier-plugin-prisma": "3.5.0",
"pretty-quick": "3.1.2",
"preview-email": "3.0.20",
"ts-jest": "29.0.3",
"ts-node": "10.9.2",
"typescript": "^4.8.4"
},
"private": true,
"packageManager": "[email protected]"
}