-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1016 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1016 Bytes
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
{
"name": "htmx-van-playground",
"version": "1.0.0",
"description": "HTMX Van.JS Playground",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"tsc": "tsc",
"build": "tsc && esbuild dist/client.js --bundle --outfile=dist/client.bundle.js",
"minify": "terser dist/client.bundle.js --compress --toplevel --mangle --mangle-props regex=/^_.+/ -f wrap_func_args=false -o dist/client.bundle.min.js",
"build-prod": "npm run build && npm run minify"
},
"keywords": [
"htmx",
"van"
],
"author": "Phoscur",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.5",
"esbuild": "^0.19.10",
"nodemon": "^3.0.2",
"terser": "^5.26.0",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"chance": "^1.1.11",
"compression": "^1.7.4",
"express": "^4.18.2",
"htmx.org": "^1.9.10",
"mini-van-plate": "^0.5.3",
"vanjs-core": "^1.2.7"
}
}