forked from jsun969/uwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "uwall",
"version": "0.0.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:update": "prisma db push",
"db:manage": "prisma studio",
"format": "prettier --write \"**/**/*.{ts,tsx,js}\""
},
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@prisma/client": "^4.0.0",
"@trpc/client": "^9.25.3",
"@trpc/next": "^9.25.3",
"@trpc/react": "^9.25.3",
"@trpc/server": "^9.25.3",
"next": "12.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.0.0",
"simple-git-hooks": "^2.8.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
}
}