-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 848 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "module",
"scripts": {
"build:html": "oohtml bundle --recursive --auto-embed=routes",
"build:css": "tailwindcss -c ./public/assets/css/tailwind.config.cjs -i ./public/assets/css/tailwind.dev.css -o ./public/assets/css/tailwind.css",
"build:js": "webflo generate::client --recursive --compression --auto-embed",
"build": "npm run build:html && npm run build:css && npm run build:js",
"start": "webflo start"
},
"dependencies": {
"@linked-db/linked-ql": "^0.3.5",
"@webqit/util": "^0.7.1",
"@webqit/webflo": "file:../../webflo",
"pg": "^8.12.0"
},
"devDependencies": {
"@webqit/oohtml-cli": "^1.0.10",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.7"
}
}