-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.04 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
{
"name": "nano-jsx-denon-live-reload",
"version": "0.0.1",
"description": "Template using nano-jsx, deno and windi with server-side live reload.",
"scripts": {
"build": "windicss --minify --style --config windi.config.js --output public/windi.css",
"dev": "concurrently -n \"windi,deno\" -c \"green,blue\" \"npm run windi-dev\" \"denon dev\"",
"windi-dev": "windicss --dev --style --config windi.config.js --output public/windi.css",
"windi": "windicss --style --config windi.config.js --output public/windi.css",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"serve": "npm run build && denon start",
"start": "npm run dev",
"test": "echo 'soon...'"
},
"devDependencies": {
"autoprefixer": "10.4.2",
"concurrently": "^7.0.0",
"prettier": "2.3.0",
"typescript": "^4.5.2",
"windicss": "^3.4.3"
},
"author": "Guilherme Rodrigues",
"license": "MIT",
"engines": {
"node": ">=16.13.2"
}
}