generated from nichoth/template-ts-preact-htm-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.8 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
{
"type": "module",
"private": "true",
"version": "0.0.0",
"main": "public/index.js",
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"build-tests": "esbuild test/index.ts --bundle --format=cjs --keep-names > test/test-bundle.js",
"test": "npm run lint && npm run build && npm run build-tests && npm run test-tape-run",
"test-tape-run": "cat test/index.html | tape-run --input=html --static=test | tap-spec",
"build": "mkdir -p ./public && rm -rf ./public/* && vite build",
"start": "concurrently --kill-others \"npx ntl functions:serve --port=9999 --debug\" \"npx vite\"",
"preversion": "npm run lint",
"version": "auto-changelog --template keepachangelog --breaking-pattern 'BREAKING CHANGE' && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@bicycle-codes/routes": "^4.0.7",
"@nichoth/components": "^0.16.12",
"@preact/signals": "^2.0.0",
"htm": "^3.1.1",
"ky": "^1.7.2",
"preact": "^10.24.2",
"route-event": "^6.0.0",
"stylelint": "^16.9.0"
},
"devDependencies": {
"@bicycle-codes/debug": "^0.7.2",
"@bicycle-codes/tapzero": "^0.10.3",
"@netlify/functions": "^3.0.0",
"@preact/preset-vite": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"auto-changelog": "^2.4.0",
"concurrently": "^9.0.1",
"cssnano": "^7.0.4",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"netlify-cli": "^17.36.4",
"postcss-nesting": "^13.0.0",
"stylelint-config-standard": "^36.0.1",
"tap-spec": "^5.0.0",
"tape-run": "^11.0.0",
"typescript": "^5.6.3",
"vite": "^6.0.1"
},
"author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)"
}