-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "bun-nextjs-hello",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"postbuild": "next-sitemap",
"seed": "prisma db seed",
"reset-db-local": "npx prisma db push --force-reset && bun run postinstall && npm run seed",
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"build-stats": "cross-env ANALYZE=true bun run build",
"start": "node ./server.js",
"export": "next export",
"lint": "next lint",
"check-types": "tsc --noEmit --pretty",
"format": "next lint --fix && prettier . --write",
"check-secret": "bun run .husky/check-secret.js",
"clean": "rimraf .next out",
"commit": "git add . && cz && git push origin"
},
"prisma": {
"seed": "bun run prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@tanstack/react-query": "^4.35.0",
"@trpc/client": "^10.38.2",
"@trpc/next": "^10.38.2",
"@trpc/react-query": "^10.38.2",
"@trpc/server": "^10.38.2",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"ahooks": "^3.7.8",
"antd": "^5.9.0",
"autoprefixer": "^10.4.15",
"axios": "^1.5.0",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"diginext-utils": "^3.1.0",
"eslint": "^8.49.0",
"eslint-config-next": "^13.4.19",
"express": "^4.18.2",
"html-react-parser": "^4.2.2",
"lodash": "^4.17.21",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-seo": "^6.1.0",
"next-sitemap": "^4.2.3",
"postcss": "8.4.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.66.1",
"superjson": "^1.13.1",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"usehooks-ts": "^2.9.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.1",
"@next/bundle-analyzer": "^13.4.19",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "^8.44.2",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^5.2.0",
"rimraf": "^5.0.1"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
]
}
}