forked from Nexel-Lab/Arch-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.4 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "arch-framework",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Nexel-Lab/Arch-Framework.git"
},
"bugs": {
"url": "https://github.com/Nexel-Lab/Arch-Framework/issues"
},
"homepage": "https://arch.nexellab.com",
"scripts": {
"eslint": "eslint --fix \"./src/**/**/**/**/*.{js,ts,jsx,tsx}\" --ext jsconfig.json",
"prettier": "prettier --write \"./src/**/**/**/**/*.{js,ts,jsx,tsx}\"",
"lint": "next lint",
"format": "pnpm prettier && pnpm eslint",
"db:generate": "prisma generate",
"db:generate:none": "prisma generate --no-engine",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"pre:css": "panda codegen",
"pre:db": "pnpm db:generate:none && pnpm db:push",
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"deploy": "pnpm pre:db && pnpm build",
"analyze": "cross-env ANALYZE=true next build",
"analyze-b": "cross-env BUNDLE_ANALYZE=both next build",
"update": "pnpm -r update --latest",
"clean:build": "node scripts/clean.build",
"clean:build:pkg": "node scripts/clean.pkg.build",
"clean:node": "node scripts/clean.node",
"clean": "pnpm run \"/^clean:.*/\"",
"yarn:pre:db": "yarn db:generate:none && yarn db:push",
"yarn:deploy": "yarn yarn:pre:db && yarn build"
},
"prisma": {
"schema": "arch/prisma/schema.prisma"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@aws-sdk/client-s3": "^3.701.0",
"@aws-sdk/lib-storage": "^3.701.0",
"@aws-sdk/s3-request-presigner": "^3.701.0",
"@ducanh2912/next-pwa": "^10.2.9",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.13.5",
"@next/third-parties": "^15.0.3",
"@prisma/client": "^6.0.0",
"@prisma/extension-accelerate": "^1.2.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-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "5.62.0",
"@tanstack/react-query-devtools": "^5.62.0",
"@trpc/client": "11.0.0-rc.648",
"@trpc/react-query": "11.0.0-rc.648",
"@trpc/server": "11.0.0-rc.648",
"axios": "^1.7.8",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.12.0",
"lucide-react": "^0.462.0",
"million": "^3.1.11",
"multer": "1.4.5-lts.1",
"next": "^14.2.18",
"next-auth": "^4.24.10",
"nodemailer": "^6.9.16",
"nprogress": "^0.2.0",
"react": "^18.3.1",
"react-day-picker": "^9.4.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-icons": "^5.3.0",
"react-toastify": "^10.0.6",
"stripe": "^17.4.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuidv7": "^1.0.2",
"vaul": "^1.1.1",
"zod": "^3.23.8",
"zustand": "5.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@emotion/babel-plugin": "^11.13.5",
"@next/bundle-analyzer": "^15.0.3",
"@pandacss/dev": "^0.48.0",
"@types/bcryptjs": "^2.4.6",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.1",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.12",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"file-loader": "^6.2.0",
"glslify-import-loader": "^0.1.2",
"glslify-loader": "^2.0.0",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.49",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.0.0",
"raw-loader": "^4.0.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"url-loader": "^4.1.1"
}
}