-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 3.12 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
{
"name": "scholarsuite",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "v22",
"npm": "v10"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run ",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint:js": "next lint --cache-strategy=content --cache-location=.eslintjscache",
"lint:css": "stylelint \"**/*.css\" --cache --cache-strategy=content --cache-location=.stylelintcache",
"prettier": "prettier --write . --cache --cache-strategy=content --cache-location=.prettiercache",
"prettier:check": "prettier --check . --cache --cache-strategy=content --cache-location=.prettiercache",
"type-check": "tsc --noEmit",
"format": "turbo run lint:js lint:css -- --fix && turbo run prettier -- --write",
"storybook": "BUILD_ENV=storybook storybook dev -p 6006 --quiet --no-open",
"storybook:build": "BUILD_ENV=storybook storybook build",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:format": "prisma format",
"db:seed-dev": "node --import=\"./node-hooks/typescript.js\" prisma/seed-dev.ts",
"db:seed-prod": "node --import=\"./node-hooks/typescript.js\" prisma/seed-prod.ts",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "~6.0.1",
"@radix-ui/react-avatar": "~1.1.1",
"@radix-ui/react-dialog": "~1.1.2",
"@radix-ui/react-dropdown-menu": "~2.1.2",
"@radix-ui/react-popover": "~1.1.2",
"@radix-ui/react-scroll-area": "~1.2.1",
"@radix-ui/react-select": "~2.1.2",
"@radix-ui/react-tabs": "~1.1.1",
"@radix-ui/react-toast": "~1.2.2",
"classnames": "~2.5.1",
"lucide-react": "~0.462.0",
"next": "~15.0.3",
"next-auth": "~5.0.0-beta.25",
"next-intl": "~3.25.3",
"nodejs-loaders": "~1.1.0",
"prisma": "~6.0.1",
"react": "~18.3.1",
"react-dom": "~18.3.1"
},
"devDependencies": {
"@storybook/addon-a11y": "~8.4.6",
"@storybook/addon-essentials": "~8.4.6",
"@storybook/addon-interactions": "~8.4.6",
"@storybook/addon-links": "~8.4.6",
"@storybook/addon-themes": "~8.4.6",
"@storybook/nextjs": "~8.4.6",
"@storybook/react": "~8.4.6",
"@testing-library/react": "~16.0.1",
"@types/node": "~22.10.2",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@vitejs/plugin-react": "~4.3.4",
"@vitest/coverage-v8": "~2.1.8",
"autoprefixer": "~10.4.20",
"eslint": "~8.57.0",
"eslint-config-next": "~15.0.3",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-storybook": "~0.11.1",
"husky": "~9.1.6",
"jsdom": "~25.0.1",
"lint-staged": "~15.2.10",
"postcss": "~8.4.49",
"prettier": "~3.4.1",
"prettier-plugin-tailwindcss": "~0.6.9",
"storybook": "~ 8.4.6",
"stylelint-config-standard": "~36.0.1",
"stylelint-order": "~6.0.4",
"stylelint-selector-bem-pattern": "~4.0.1",
"tailwindcss": "~3.4.15",
"turbo": "~2.3.3",
"typescript": "~5.7.2",
"vitest": "~2.1.8"
},
"packageManager": "[email protected]"
}