-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
{
"name": "storyrolls-fast",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"devbuild": "next lint --fix && pnpm run format && next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"devprepare": "next lint --fix && prettier --write .",
"lint:fix": "next lint --fix && pnpm run format",
"postinstall": "prisma generate",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@edgestore/react": "^0.1.6",
"@edgestore/server": "^0.1.6",
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.12.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"argon2": "^0.31.2",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dompurify": "^3.0.8",
"framer-motion": "^11.0.28",
"jodit": "^4.0.2",
"jodit-react": "^1.3.39",
"jodit-react-ts": "^0.9.0",
"jsonwebtoken": "^9.0.2",
"lottie-react": "^2.4.0",
"lottie-web": "^5.12.2",
"lucide-react": "^0.303.0",
"next": "^14.2.0",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"sass": "^1.69.7",
"sharp": "^0.33.2",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-loader": "^0.5.7",
"postcss": "^8.4.33",
"prettier-eslint": "^16.3.0",
"prettier-plugin-sort-imports": "^1.8.3",
"prisma": "^5.12.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}