-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.42 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
55
56
57
58
{
"scripts": {
"install:brixi": "brixi && mv ./brixi/brixi.css ./public/css/brixi.css && rmdir ./brixi",
"build": "run-s build:*",
"build:app": "go build",
"build:css": "cssmonster",
"build:brixi": "npm run install:brixi",
"build:bundle": "node ./build/bundle.js",
"build:js": "twist --type=esbuild --src=./scripts"
},
"devDependencies": {
"@codewithkyle/notifyjs": "^4.1.0",
"@codewithkyle/supercomponent": "^2.0.0",
"@codewithkyle/twist": "^2.0.2",
"brixi": "^0.7.1",
"cssmonster": "^0.7.2",
"esbuild": "^0.15.10",
"esinstall": "^1.1.7",
"glob": "^8.0.3",
"lit-html": "^2.4.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"sass": "^1.55.0",
"sortablejs": "^1.15.0",
"tooltipper": "^1.1.4",
"typescript": "^4.8.4"
},
"bundle": [
{
"in": "@codewithkyle/notifyjs/snackbar.js",
"out": "snackbar.js"
},
{
"in": "@codewithkyle/notifyjs/notifications.js",
"out": "notifications.js"
},
{
"in": "@codewithkyle/notifyjs/toaster.js",
"out": "toaster.js"
},
"tooltipper",
"@codewithkyle/supercomponent",
"lit-html",
"lit-html/directives/unsafe-html.js",
"lit-html/directives/until.js",
"tooltipper",
"sortablejs"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts,js,scss,css,tsx,jsx,mjs,cjs",
"quiet": false
}
}
}