-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.89 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
{
"name": "website-processing",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"check": "astro check",
"preview": "astro preview",
"astro": "astro",
"shared:local": "npm install ../tmc-global/shared --no-save",
"shared:registry": "npm install @modcommunity/shared@^3.0.0 --no-save",
"shared:build": "npm --prefix ../tmc-global/shared run build",
"//shared:flush": "Escape hatch only. Vite no longer pre-bundles the shared package (see optimizeDeps.exclude in astro.config.mjs), so this should not be needed. Never run it while `npm run dev` is up: it deletes the cache underneath the server and every client module then 404s/504s until you restart.",
"shared:flush": "rm -rf node_modules/.vite",
"shared:watch": "npm --prefix ../tmc-global/shared run dev",
"shared:status": "node -e \"const p=require('path'),f=require('fs'),d='node_modules/@modcommunity/shared',r=f.realpathSync(d);console.log(f.lstatSync(d).isSymbolicLink()?'local -> '+p.relative(process.cwd(),r):'registry -> '+require(p.join(r,'package.json')).version)\""
},
"dependencies": {
"@astrojs/node": "^11.0.2",
"@astrojs/react": "^6.0.1",
"@fontsource-variable/dm-sans": "^5.3.0",
"@fontsource-variable/orbitron": "^5.3.0",
"@fontsource-variable/plus-jakarta-sans": "^5.3.0",
"@modcommunity/shared": "^4.0.1",
"@tailwindcss/vite": "^4.1.11",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"astro": "^7.0.6",
"lucide-react": "^0.542.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-multi-carousel": "^2.8.6",
"react-type-animation": "^3.2.0",
"tailwindcss": "^4.1.11",
"tailwindcss-intersect": "^2.2.0",
"tailwindcss-motion": "^1.1.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"typescript": "^6.0.3"
}
}