-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.71 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.71 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
{
"author": "Kyle Andrews <codingwithkyle@gmail.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"uuid": "^8.3.2",
"ws": "^7.4.5"
},
"devDependencies": {
"@codewithkyle/notifyjs": "^3.1.0",
"@codewithkyle/pubsub": "^1.1.0",
"@codewithkyle/router": "^1.0.0",
"@codewithkyle/supercomponent": "^1.0.0",
"@codewithkyle/twist": "^1.0.1",
"brixi": "^0.3.3",
"cssmonster": "^0.3.1",
"esbuild": "^0.11.14",
"esinstall": "^1.1.4",
"fuzzysort": "^1.1.4",
"glob": "^7.1.6",
"idb": "^6.0.0",
"lit-html": "^1.3.0",
"npm-run-all": "^4.1.5"
},
"bundle": [
"@codewithkyle/supercomponent",
"@codewithkyle/router",
"@codewithkyle/pubsub",
"@codewithkyle/notifyjs",
"lit-html",
"fuzzysort",
"idb"
],
"scripts": {
"bundle": "node ./build/bundle.js",
"build": "npm-run-all build:*",
"build:js": "twist --src=./src --outdir=./public/js --config=./esbuild.config.js",
"build:css": "cssmonster",
"brixi": "brixi && mv ./brixi/brixi.css ./src/globals/brixi.css && rmdir ./brixi",
"server": "node ./server/express.js",
"deploy": "run-s deploy:*",
"deploy:pre": "npm run build",
"deploy:claim": "ssh ubuntu@192.168.1.104 sudo chown -R ubuntu:ubuntu /var/www/crdt-todo/",
"deploy:deploy": "rsync -azh --delete-after -e \"ssh -o StrictHostKeyChecking=no\" ./ ubuntu@192.168.1.104:/var/www/crdt-todo/",
"deploy:reboot": "ssh ubuntu@192.168.1.104 /home/ubuntu/.nvm/versions/node/v16.13.1/bin/pm2 restart 2"
}
}