generated from nichoth/template-netlify-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.13 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
{
"type": "module",
"private": "true",
"version": "0.0.0",
"main": "public/index.js",
"scripts": {
"lint": "standardx -v \"./**/*.ts\"",
"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-arc",
"build": "mkdir -p ./public && rm -rf ./public/* && vite build",
"start": "concurrently --kill-others \"npm run start:logux\" \"npm run start:vite\"",
"start:vite": "concurrently --kill-others \"npx ntl functions:serve --port=9999 --debug\" \"npx vite\"",
"build:logux": "esbuild ./src/state/actions.ts --outdir=\"./src/state\" --format=esm --platform=node --allow-overwrite",
"start:logux": "npm run build:logux && cd src/server && esbuild ./index.ts --format=esm --platform=node | node --input-type=module",
"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": {
"@logux/client": "^0.20.1",
"@logux/redux": "^0.8.4",
"@logux/server": "^0.13.1",
"@nichoth/components": "^0.16.4",
"@nichoth/routes": "^4.0.4",
"@preact/signals": "^1.2.2",
"htm": "^3.1.1",
"ky": "^1.2.1",
"preact": "^10.19.6",
"redux": "^5.0.1",
"route-event": "^4.2.20",
"typescript-fsa": "^3.0.0"
},
"devDependencies": {
"@netlify/functions": "^2.6.0",
"@nichoth/debug": "^0.6.5",
"@nichoth/tapzero": "^0.8.4",
"@preact/preset-vite": "^2.7.0",
"@typescript-eslint/parser": "^6.15.0",
"auto-changelog": "^2.4.0",
"concurrently": "^8.2.2",
"esbuild": "^0.25.0",
"netlify-cli": "^17.38.0",
"postcss-nesting": "^12.0.1",
"standardx": "^7.0.0",
"tap-arc": "^1.2.2",
"tape-run": "^11.0.0",
"typescript": "^5.3.3",
"vite": "^5.4.14"
},
"author": "nichoth <[email protected]> (https://nichoth.com)",
"license": "AGPL-3.0-or-later"
}