|
11 | 11 | "dev": "next dev", |
12 | 12 | "build": "next build", |
13 | 13 | "start": "next start", |
14 | | - "test": "vitest -c ./vitest.config.unit.ts", |
15 | | - "test:integration": "./scripts/run-integration.sh", |
16 | | - "coverage": "vitest run -c ./vitest.config.unit.ts --coverage", |
17 | 14 | "lint:check": "eslint --max-warnings 0 --config .eslintrc .", |
18 | 15 | "lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix", |
19 | 16 | "format:fix": "prettier --write \"**/*.{ts,tsx,json}\"", |
|
24 | 21 | "db:seed": "prisma db seed", |
25 | 22 | "db:reset": "prisma migrate reset", |
26 | 23 | "update:videometadata": "ts-node --compiler-options \"{\\\"module\\\": \\\"CommonJS\\\"}\" ./src/scripts/updateVideoMetaData.ts", |
27 | | - "studio": "prisma studio", |
28 | | - "studio:docker": "open http://localhost:5555 || start http://localhost:5555", |
29 | | - "storybook": "concurrently 'yarn:watch:*'", |
30 | | - "watch:storybook": "storybook dev -p 6006", |
31 | | - "watch:tailwind": "npx tailwind -i ./src/styles/tailwind-input.css -o ./src/styles/tailwind.css --watch", |
32 | | - "build:tailwind": "npx tailwind -i ./src/styles/tailwind-input.css -o ./src/styles/tailwind.css", |
33 | | - "build-storybook": "npm run build:tailwind && storybook build" |
| 24 | + "studio": "prisma studio" |
34 | 25 | }, |
35 | 26 | "dependencies": { |
36 | | - "@auth/prisma-adapter": "^1.0.6", |
37 | | - "@discordjs/core": "^1.1.1", |
38 | | - "@discordjs/next": "^0.1.1-dev.1673526225-a580768.0", |
39 | 27 | "@hookform/resolvers": "^3.6.0", |
40 | 28 | "@icons-pack/react-simple-icons": "^9.4.0", |
41 | 29 | "@prisma/client": "^5.18.0", |
|
54 | 42 | "@radix-ui/react-tooltip": "^1.1.2", |
55 | 43 | "@tabler/icons-react": "^3.14.0", |
56 | 44 | "@types/bcrypt": "^5.0.2", |
57 | | - "@types/jsonwebtoken": "^9.0.5", |
58 | 45 | "@uiw/react-markdown-preview": "^5.1.3", |
59 | 46 | "@uiw/react-md-editor": "^4.0.4", |
| 47 | + "autoprefixer": "^10.4.20", |
60 | 48 | "axios": "^1.6.2", |
61 | 49 | "bcrypt": "^5.1.1", |
62 | 50 | "class-variance-authority": "^0.7.0", |
|
65 | 53 | "date-fns": "^3.6.0", |
66 | 54 | "dayjs": "^1.11.10", |
67 | 55 | "discord-oauth2": "^2.11.0", |
68 | | - "discord.js": "^14.14.1", |
69 | 56 | "embla-carousel-react": "^8.0.0", |
70 | 57 | "framer-motion": "^11.3.28", |
71 | 58 | "fuse.js": "^7.0.0", |
72 | 59 | "ioredis": "^5.4.1", |
73 | 60 | "jose": "^5.2.2", |
74 | | - "jsonwebtoken": "^9.0.2", |
75 | 61 | "katex": "^0.16.11", |
76 | 62 | "lucide-react": "^0.321.0", |
77 | 63 | "moment": "^2.30.1", |
78 | 64 | "next": "14.0.2", |
79 | 65 | "next-auth": "^4.24.5", |
80 | 66 | "next-themes": "^0.2.1", |
81 | 67 | "nextjs-toploader": "^1.6.11", |
82 | | - "node-fetch": "^3.3.2", |
83 | 68 | "notion-client": "^6.16.0", |
84 | 69 | "pdf-lib": "^1.17.1", |
85 | 70 | "prismjs": "^1.29.0", |
|
94 | 79 | "react-resizable-panels": "^1.0.7", |
95 | 80 | "recoil": "^0.7.7", |
96 | 81 | "sonner": "^1.4.0", |
97 | | - "storybook": "^8.0.8", |
98 | 82 | "tailwind-merge": "^2.2.1", |
99 | 83 | "tailwindcss-animate": "^1.0.7", |
100 | 84 | "vaul": "^0.8.9", |
|
106 | 90 | "zod": "^3.22.4" |
107 | 91 | }, |
108 | 92 | "devDependencies": { |
109 | | - "@chromatic-com/storybook": "^1.3.3", |
110 | | - "@storybook/addon-controls": "^8.0.8", |
111 | | - "@storybook/addon-essentials": "^8.0.8", |
112 | | - "@storybook/addon-interactions": "^8.0.8", |
113 | | - "@storybook/addon-links": "^8.0.8", |
114 | | - "@storybook/addon-onboarding": "^8.0.8", |
115 | | - "@storybook/blocks": "^8.0.8", |
116 | | - "@storybook/nextjs": "^8.0.8", |
117 | | - "@storybook/react": "^8.0.8", |
118 | | - "@storybook/test": "^8.0.8", |
119 | 93 | "@testing-library/jest-dom": "^6.4.5", |
120 | 94 | "@testing-library/react": "^15.0.7", |
121 | 95 | "@types/node": "^20", |
|
124 | 98 | "@types/react-dom": "^18", |
125 | 99 | "@typescript-eslint/eslint-plugin": "^6.20.0", |
126 | 100 | "@typescript-eslint/parser": "^6.20.0", |
127 | | - "@vitejs/plugin-react": "^4.3.0", |
128 | | - "@vitest/coverage-v8": "^1.6.0", |
129 | | - "autoprefixer": "^10.0.1", |
130 | 101 | "eslint": "^8.56.0", |
131 | | - "eslint-plugin-storybook": "^0.8.0", |
132 | 102 | "jsdom": "^24.0.0", |
133 | | - "postcss": "^8", |
134 | 103 | "prettier": "^3.2.4", |
135 | | - "prettier-plugin-tailwindcss": "^0.6.1", |
136 | 104 | "prisma": "^5.18.0", |
137 | 105 | "tailwindcss": "^3.3.0", |
138 | 106 | "ts-node": "^10.9.2", |
|
0 commit comments