-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "@forge/guild",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.12.1",
"scripts": {
"build": "pnpm with-env next build",
"clean": "git clean -xdf .cache .next .turbo node_modules",
"dev": "pnpm with-env next dev --port 3003",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"start": "pnpm with-env next start --port 3003",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
"dependencies": {
"@forge/api": "workspace:*",
"@forge/auth": "workspace:*",
"@forge/consts": "workspace:*",
"@forge/db": "workspace:*",
"@forge/ui": "workspace:*",
"@gsap/react": "^2.1.2",
"@svgr/webpack": "^8.1.0",
"framer-motion": "^12.34.3",
"geist": "^1.7.0",
"gsap": "^3.14.2",
"lucide-react": "^0.575.0",
"next": "^16.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rsuite": "^6.1.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@forge/eslint-config": "workspace:*",
"@forge/prettier-config": "workspace:*",
"@forge/tailwind-config": "workspace:*",
"@forge/tsconfig": "workspace:*",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv-cli": "^11.0.0",
"eslint": "catalog:",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:"
},
"prettier": "@forge/prettier-config"
}