-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.9 KB
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
{
"name": "git-server-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress:build-and-db": "npm run build && npx prisma migrate deploy",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"start:prod":"npx prisma migrate deploy && node server.js"
},
"dependencies": {
"@hookform/resolvers": "3.3.2",
"@prisma/client": "^5.6.0",
"@tanstack/react-query": "5.8.3",
"axios": "1.6.1",
"clsx": "2.0.0",
"date-fns": "2.30.0",
"framer-motion": "10.16.5",
"next": "13.5.6",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "7.48.2",
"simple-git": "3.20.0",
"use-debounce": "10.0.0",
"zod": "3.22.4"
},
"devDependencies": {
"@storybook/addon-a11y": "7.5.1",
"@storybook/addon-essentials": "7.5.1",
"@storybook/addon-interactions": "7.5.1",
"@storybook/addon-links": "7.5.1",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/addon-themes": "7.5.3",
"@storybook/blocks": "7.5.1",
"@storybook/nextjs": "7.5.1",
"@storybook/react": "7.5.1",
"@storybook/testing-library": "0.2.2",
"@testing-library/cypress": "10.0.1",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "4.1.0",
"autoprefixer": "^10",
"cypress": "13.5.0",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-storybook": "0.6.15",
"happy-dom": "12.9.1",
"postcss": "^8",
"prisma": "5.6.0",
"storybook": "7.5.1",
"tailwindcss": "^3",
"typescript": "^5",
"vitest": "0.34.6"
}
}