-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.34 KB
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
{
"name": "web",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/hammersmith-one": "^4.5.7",
"@fontsource/nunito-sans": "^4.5.8",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^4.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"downshift": "^6.1.7",
"framer-motion": "^6.3.3",
"match-sorter": "^6.3.1",
"next": "^12.1.6",
"next-auth": "^4.9.0",
"next-sitemap": "^3.1.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-highlight-words": "^0.18.0",
"react-hook-form": "^7.31.3",
"react-icons": "^4.3.1",
"swr": "^1.3.0",
"typescript": "^4.4.2",
"use-deep-compare-effect": "^1.8.1",
"web-vitals": "^2.1.0"
},
"scripts": {
"dev": "next dev",
"build": "yarn gen && next build",
"postbuild": "next-sitemap",
"start": "next start",
"gen": "npx prisma generate",
"push": "npx prisma db push",
"lint": "eslint **/*.{ts,tsx} && prettier --check **/*.{ts,tsx}",
"lint:fix": "eslint --fix **/*.{ts,tsx} && prettier --write **/*.{ts,tsx}",
"postinstall": "husky install"
},
"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/match-sorter": "^6.0.0",
"@types/react-highlight-words": "^0.16.4",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"prettier": "^2.6.2",
"prisma": "^4.0.0"
}
}