-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.43 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
{
"name": "ecosfera-baltica-digital",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"preinstall": "node -v | grep '^v20\\.' || { echo '\\033[1;31mPlease use Node.js version 20.x\\033[0m'; exit 1; }",
"dev": "npx check-dependencies --scope-list devDependencies && vite",
"build": "tsc -b && vite build",
"checks": "npm-run-all -p lint typecheck format-check test:once",
"test": "vitest",
"test:once": "vitest run",
"lint": "eslint .",
"typecheck": "tsc -p ./tsconfig.app.json --noEmit --pretty && tsc -p ./tsconfig.node.json --noEmit --pretty",
"import-deck-csv": "node ./scripts/csv_to_deck/script.js './scripts/csv_to_deck/Baltic Ecosphere Species Cards.csv' ./src/decks/ecosfera-baltica.deck.json",
"gen-images": "node ./scripts/ai_gen_cards/script.js ./src/decks/ecosfera-baltica.deck.json ./src/assets/images/ecosfera-baltica",
"optimize-images": "node ./scripts/optimaze_images/script.js ./src/assets/ ./public/",
"format": "npx prettier --write ./",
"format-check": "npx prettier -c ./",
"preview": "vite preview",
"update-locale-typings": "npx i18next-resources-for-ts interface -i ./src/locales/en -o ./src/@types/locale.d.ts"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.17.7",
"@types/three": "^0.168.0",
"@xstate/react": "^4.1.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.5.6",
"framer-motion-3d": "^11.5.6",
"i18next": "^24.0.2",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"immer": "^10.1.1",
"leva": "^0.9.35",
"lodash-es": "^4.17.21",
"lucide-react": "^0.445.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.3",
"react-icons": "^5.3.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.168.0",
"uuid": "^10.0.0",
"xstate": "^5.18.2"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@statelyai/inspect": "^0.4.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"i18next-resources-for-ts": "^1.5.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"openai": "^4.63.0",
"postcss": "^8.4.47",
"prettier-plugin-tailwindcss": "^0.6.8",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vitest": "^2.1.3",
"zod": "^3.23.8",
"zod-error": "^1.5.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"engines": {
"node": "20.x"
}
}