-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.22 KB
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
{
"scripts": {
"bundle": "node ./build/bundle.js",
"brixi": "brixi && mv ./brixi/brixi.css ./src/styles/brixi.css && rmdir ./brixi",
"build": "run-p build:*",
"build:js": "twist --src=./src --outDir=./public/js",
"build:css": "cssmonster",
"production": "npm run build && asset-manager",
"watch": "npm-watch"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.10.0",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2",
"ws": "^7.5.3"
},
"devDependencies": {
"@codewithkyle/asset-manager": "^1.0.1",
"@codewithkyle/jsql": "^1.0.5",
"@codewithkyle/pubsub": "^1.1.1",
"@codewithkyle/router": "^1.1.0",
"@codewithkyle/supercomponent": "^1.1.0",
"@codewithkyle/twist": "^1.3.1",
"brixi": "^0.5.2",
"cssmonster": "^0.4.0",
"esinstall": "^1.1.7",
"glob": "^7.1.7",
"lit-html": "^1.4.1"
},
"bundle": [
"@codewithkyle/jsql",
"@codewithkyle/pubsub",
"@codewithkyle/router",
"@codewithkyle/supercomponent",
"lit-html"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts,js,scss,css,tsx,jsx,mjs,cjs",
"quiet": false
}
}
}