-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.52 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.52 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
{
"name": "exploriter",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf _site",
"checkpoints:generate": "node --experimental-strip-types scripts/generate-movement-checkpoints.ts",
"tailwind:watch": "npx @tailwindcss/cli -i _includes/css/input.css -o _includes/css/output.css --watch",
"js:watch:main": "npx esbuild _includes/js/main.js --bundle --outfile=_includes/js/bundle.js --watch",
"js:watch:movement": "npx esbuild _includes/js/movement-entry.js --bundle --outfile=_includes/js/movement-bundle.js --watch",
"js:watch": "npm-run-all --parallel js:watch:main js:watch:movement",
"eleventy:serve": "npx @11ty/eleventy --serve",
"dev": "npm run clean && npm run checkpoints:generate && npm-run-all --parallel tailwind:watch js:watch eleventy:serve",
"build": "npm run checkpoints:generate && npx @tailwindcss/cli -i _includes/css/input.css -o _includes/css/output.css --minify && npx esbuild _includes/js/main.js --bundle --minify --outfile=_includes/js/bundle.js && npx esbuild _includes/js/movement-entry.js --bundle --minify --outfile=_includes/js/movement-bundle.js && npx @11ty/eleventy",
"typecheck": "npm run checkpoints:generate && tsc --noEmit"
},
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@tailwindcss/cli": "^4.2.1",
"tailwindcss": "^4.2.1",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@types/node": "^25.3.5",
"esbuild": "^0.27.2",
"npm-run-all2": "^8.0.4",
"typescript": "^5.8.2"
}
}