-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.43 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
{
"name": "rkdawe_website",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "rollup -c",
"debug": "rollup -c -w",
"start": "sirv public --no-clear",
"check": "svelte-check --tsconfig ./tsconfig.json",
"clean": "rm -rvf public/build/*",
"deploy": "rm -rvf /home/rwilliamson/temp/var/www/localhost/html/* && mkdir -p /home/rwilliamson/temp/var/www/localhost/html && cp -rv public/. /home/rwilliamson/temp/var/www/localhost/html/",
"build_deploy": "rollup -c && rm -rvf /home/rwilliamson/temp/var/www/localhost/html/* && mkdir -p /home/rwilliamson/temp/var/www/localhost/html && cp -rv public/. /home/rwilliamson/temp/var/www/localhost/html/",
"deps": "npm outdated | awk 'NR>1 {print $1\"@\"$4}' | xargs npm install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^22.5.5",
"prettier": "^3.2.2",
"prettier-plugin-svelte": "^3.1.2",
"rollup": "^4.21.3",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.6",
"sirv-cli": "^2.0.2",
"svelte": "^4.2.8",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.2",
"tslib": "^2.6.2",
"typescript": "^5.6.2"
},
"dependencies": {
"jsencrypt": "^3.3.2"
}
}