-
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) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.11 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": "amontesl.github.io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon --watch next.config.ts --watch package.json --watch src/content --watch public/projects --watch scripts/generate-project-images.mjs --watch scripts/generate-marketplace-stats.mjs --ignore src/content/projectImages.json --ignore src/content/marketplaceStats.json --ignore src/content/marketplaceStats.generated.ts --ignore .next --ignore .next-dev --ignore out --ext js,mjs,json,ts,tsx --delay 350ms --exec \"npm run gen:content && npm run dev:next\"",
"dev:next": "next dev --turbopack",
"prebuild": "npm run gen:content",
"build": "next build",
"postbuild": "node scripts/postprocess-static-export.mjs",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check": "node scripts/run-checks.mjs",
"preview": "node scripts/preview-static.mjs",
"export": "next build",
"deploy": "node scripts/deploy-with-check.mjs",
"ship": "node scripts/deploy-with-check.mjs",
"gen:content": "node scripts/generate-project-images.mjs && node scripts/generate-marketplace-stats.mjs",
"gen:images": "node scripts/generate-images.mjs",
"translate": "node scripts/translate.mjs",
"check-translations": "node scripts/check-translations.mjs"
},
"dependencies": {
"@react-three/fiber": "^9.3.0",
"@swc/helpers": "^0.5.18",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.4",
"framer-motion": "^12.23.12",
"next": "^15.5.9",
"next-intl": "^4.7.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.3.1",
"three": "^0.180.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.180.0",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"gh-pages": "^6.3.0",
"nodemon": "^3.1.11",
"sharp": "^0.34.3",
"tailwindcss": "^4",
"tailwindcss-fluid-spacing": "^0.4.0",
"tailwindcss-fluid-type": "^2.0.7",
"typescript": "^5"
}
}