-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 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
{
"name": "stormland-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "dotenv -c -- prisma generate && next build",
"start": "next start",
"lint": "next lint",
"migrate:dev": "dotenv -e .env.local -- prisma migrate dev",
"db:push": "dotenv -e .env.local -- prisma db push",
"migrate:reset": "dotenv -e .env.local -- prisma migrate reset",
"db:seed": "dotenv -e .env.local -- prisma db seed",
"prisma:generate": "dotenv -c -- prisma generate",
"prisma:studio": "dotenv -c -- prisma studio"
},
"dependencies": {
"@prisma/client": "^4.15.0",
"argon2": "^0.30.3",
"autoprefixer": "10.4.14",
"cva": "npm:class-variance-authority",
"jose": "^4.15.7",
"lucide-react": "^0.396.0",
"msmc": "^4.1.0",
"next": "15.0.0-rc.0",
"react": "19.0.0-rc-8971381549-20240625",
"react-dom": "19.0.0-rc-8971381549-20240625",
"react-skinview3d": "^5.1.0",
"skinview3d": "^3.0.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@types/node": "20.2.5",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"dotenv-cli": "^7.2.1",
"encoding": "^0.1.13",
"eslint": "8.57.0",
"eslint-config-next": "13.4.4",
"postcss": "8.4.24",
"prisma": "^4.15.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
}
}