-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.44 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.44 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
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
{
"name": "decoded-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn i18n:all && next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"analyze": "ANALYZE=true next build",
"complexity": "yarn lint --format json > lint-report.json 2>/dev/null || true && echo 'Lint analysis complete'",
"typegen:dev": "yarn dlx openapi-typescript-codegen --input http://dev.decoded.style/openapi.json --output ./src/api/generated --client fetch",
"pre-commit": "yarn typegen:dev && yarn i18n:all && git add src/api/generated/",
"prepare": "husky",
"i18n:check": "node scripts/check-i18n-keys.js",
"i18n:prune": "node scripts/prune-unused-keys.js",
"i18n:validate": "node scripts/validate-interpolation.js",
"i18n:all": "yarn i18n:check && yarn i18n:validate && yarn i18n:prune",
"i18n:ci": "yarn i18n:check && yarn i18n:validate",
"build:ci": "yarn i18n:ci && next build",
"ui:build": "cd packages/ui && npx tsup",
"ui:dev": "cd packages/ui && npx tsup --watch",
"ui:version": "cd packages/ui && npm version patch",
"ui:deploy": "cd packages/ui && npx tsup && cd ../.. && npx yarn install"
},
"dependencies": {
"@decoded/ui": "file:packages/ui",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@gsap/react": "^2.1.2",
"@heroicons/react": "^2.2.0",
"@mysten/zklogin": "^0.8.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@types/matter-js": "^0.19.8",
"@types/three": "^0.178.1",
"@use-gesture/react": "^10.3.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^12.23.12",
"gsap": "^3.13.0",
"i18next": "^25.5.2",
"jose": "^6.0.12",
"js-sha256": "^0.11.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"matter-js": "^0.20.0",
"motion": "^12.23.19",
"next": "^15.4.1",
"next-i18next": "^15.4.2",
"next-intl": "^4.3.7",
"playwright": "^1.55.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-error-boundary": "^6.0.0",
"react-focus-lock": "^2.13.6",
"react-hot-toast": "^2.5.2",
"react-i18next": "^15.7.3",
"react-icons": "^5.5.0",
"react-image-crop": "^11.0.10",
"sharp": "^0.34.3",
"tailwind-merge": "^3.3.1",
"three": "^0.178.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@next/bundle-analyzer": "^15.4.6",
"@next/eslint-plugin-next": "^15.4.5",
"@playwright/test": "^1.55.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.11",
"@types/lodash": "^4",
"@types/node": "^24.0.14",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/sharp": "^0.32.0",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.4.1",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lighthouse": "^12.8.1",
"openapi-typescript-codegen": "^0.29.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.3",
"typescript": "5.9.2"
},
"packageManager": "yarn@4.9.2"
}