-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "testing-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "npx ts-node --loader ts-node/esm ./node_modules/.bin/sequelize-cli db:migrate",
"migrate:undo": "npx ts-node --loader ts-node/esm ./node_modules/.bin/sequelize-cli db:migrate:undo",
"seed": "npx ts-node --loader ts-node/esm ./node_modules/.bin/sequelize-cli db:seed:all"
},
"dependencies": {
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-slot": "^1.1.2",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"dotenv": "^16.4.7",
"formik": "^2.4.6",
"framer-motion": "^12.4.10",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.477.0",
"next": "15.2.0",
"next-video": "^2.1.0",
"pg": "^8.13.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.6.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@sequelize/cli": "^7.0.0-alpha.44",
"@tailwindcss/postcss": "^4.0.9",
"@types/node": "20.17.46",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.2.0",
"postcss": "^8.5.3",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"tailwindcss": "^4.0.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5"
}
}