-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "craftclass",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"prebuild": "node --experimental-strip-types --no-warnings tests/run.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"refresh": "node scripts/refresh.mjs",
"fetch": "node scripts/fetch-poe2db.mjs",
"process": "node scripts/process-data.mjs && node scripts/download-images.mjs",
"weights": "node scripts/fetch-weights.mjs",
"e2e": "node scripts/_e2e_paste.mjs",
"test": "node --experimental-strip-types --no-warnings tests/run.mjs",
"test:emu": "node --experimental-strip-types --no-warnings tests/emulator.test.mjs"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.1.3",
"cheerio": "^1.2.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"jsdom": "^29.1.1",
"typescript": "^7.0.2"
}
}