-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "pastes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "npx prisma generate",
"tsc": "tsc",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@hookform/resolvers": "^2.9.11",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.6",
"@prisma/client": "^4.9.0",
"@sentry/nextjs": "^7.38.0",
"@tanstack/react-query": "^4.24.4",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"date-fns": "^2.29.3",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"ky": "^0.33.3",
"language-colors": "^2.1.41",
"next": "13.1.6",
"next-auth": "^4.19.2",
"prisma": "^4.9.0",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.0",
"react-select": "^5.7.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.3.0",
"@types/node": "^18.13.0",
"@types/prismjs": "^1.26.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"copy-webpack-plugin": "^11.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"node-actionlint": "^1.2.2",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2"
},
"prisma": {
"seed": "ts-node --project tsconfig.json --transpile-only prisma/seed.ts"
},
"lint-staged": {
"{src,.,prisma}/**/*.{ts,tsx,js}": [
"prettier --write -u",
"eslint --fix"
],
".eslintrc.js": "prettier --write -u",
".github/workflows/*.yml": [
"prettier --write -u",
"node-actionlint"
]
}
}