This repository has been archived by the owner on May 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
160 lines (160 loc) · 5.24 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "tweet",
"version": "1.13.0",
"private": true,
"scripts": {
"dev": "next dev",
"db-seed": "cross-env NODE_ENV='development' prisma db seed",
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"start": "next dev",
"build": "cross-env SKIP_ENV_VALIDATION='true' next build",
"build:prod": "next build",
"lint": "cross-env SKIP_ENV_VALIDATION='true' next lint --cache",
"lint:fix": "cross-env SKIP_ENV_VALIDATION='true' next lint --cache --fix",
"prepare": "is-ci || husky install",
"postinstall": "prisma generate",
"stylelint": "stylelint --cache **/*.css",
"stylelint:fix": "stylelint --fix --cache **/*.css",
"prettier": "prettier --write --ignore-unknown .",
"cleandb": "rimraf prisma/db.sqlite & pnpm prisma db push & pnpm run db-seed",
"test:e2e": "pnpm run cleandb & playwright test",
"codegen:e2e": "playwright codegen",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test": "vitest run --passWithNoTests",
"clean": "rimraf .next && rimraf prisma/db.sqlite",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/carousel": "^6.0.7",
"@mantine/core": "^6.0.7",
"@mantine/dates": "^6.0.7",
"@mantine/dropzone": "^6.0.7",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@mantine/modals": "^6.0.7",
"@mantine/next": "^6.0.7",
"@mantine/notifications": "^6.0.7",
"@mantine/nprogress": "^6.0.7",
"@mantine/prism": "^6.0.7",
"@mantine/spotlight": "^6.0.7",
"@mantine/tiptap": "^6.0.7",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.4",
"@prisma/client": "^4.12.0",
"@tabler/icons": "1.119.0",
"@tabler/icons-react": "^2.15.0",
"@tanstack/react-query": "^4.29.1",
"@tiptap/extension-link": "2.0.0-beta.212",
"@tiptap/react": "2.0.0-beta.212",
"@tiptap/starter-kit": "2.0.0-beta.212",
"@trpc/client": "^10.19.1",
"@trpc/next": "^10.19.1",
"@trpc/react-query": "^10.19.1",
"@trpc/server": "^10.19.1",
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.14.6",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cookies-next": "^2.1.1",
"dayjs": "^1.11.7",
"embla-carousel-react": "^7.1.0",
"lodash": "^4.17.21",
"next": "13.1.4",
"next-auth": "^4.22.0",
"next-s3-upload": "^0.3.0",
"pocketbase": "^0.10.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"superjson": "^1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@next/env": "^13.3.0",
"@playwright/test": "^1.32.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/addon-essentials": "7.0.0-beta.44",
"@storybook/addon-interactions": "7.0.0-beta.44",
"@storybook/addon-links": "7.0.0-beta.44",
"@storybook/blocks": "7.0.0-beta.44",
"@storybook/nextjs": "7.0.0-beta.44",
"@storybook/react": "7.0.0-beta.44",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/lodash": "^4.14.192",
"@types/micromatch": "^4.0.2",
"@types/prettier": "^2.7.2",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/ui": "^0.28.5",
"autoprefixer": "^10.4.14",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"css-loader": "^6.7.3",
"eslint": "8.32.0",
"eslint-config-next": "13.1.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-storybook": "^0.6.11",
"is-ci": "^3.0.1",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.1",
"micromatch": "^4.0.5",
"msw": "^0.49.3",
"msw-trpc": "^1.2.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.2.4",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"prisma": "^4.12.0",
"rimraf": "^4.4.1",
"semantic-release": "^20.1.3",
"storybook": "7.0.0-beta.44",
"style-loader": "^3.3.2",
"stylelint": "^15.4.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "4.9.4",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.28.5"
},
"repository": {
"type": "git",
"url": "https://github.com/CUexter/Tweet.git"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"engines": {
"node": ">=18",
"pnpm": ">=7",
"npm": "please use pnpm",
"yarn": "please use pnpm"
},
"publishConfig": {
"access": "restricted"
}
}