-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "terrace",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && next lint",
"test": "vitest --watch",
"test:run": "NODE_ENV=test vitest run"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/marked": "^5.0.0",
"@types/node": "20.3.1",
"@types/prismjs": "^1.26.0",
"@types/ramda": "^0.29.3",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@types/testing-library__jest-dom": "^5.14.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.2",
"autoprefixer": "10.4.14",
"eslint": "8.43.0",
"eslint-config-next": "13.4.12",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"postcss": "8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "3.3.2",
"tsd": "^0.28.1",
"typescript": "5.1.3",
"vite": "^4.4.2",
"vitest": "^0.33.0"
},
"dependencies": {
"@hookform/resolvers": "^3.1.1",
"@react-oauth/google": "^0.11.0",
"@supabase/auth-helpers-nextjs": "^0.7.3",
"@supabase/supabase-js": "^2.26.0",
"ace-builds": "^1.23.4",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.9",
"envalid": "^7.3.1",
"flowbite": "^1.6.6",
"google-auth-library": "^9.0.0",
"marked": "^5.1.1",
"marked-gfm-heading-id": "^3.0.4",
"marked-highlight": "^2.0.1",
"marked-mangle": "^1.1.0",
"material-icons": "^1.13.8",
"next": "13.4.12",
"node-html-parser": "^6.1.5",
"prismjs": "^1.29.0",
"ramda": "^0.29.0",
"react": "18.2.0",
"react-ace": "^10.1.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.14.0",
"ts-pattern": "^5.0.1",
"zod": "^3.21.4"
}
}