-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "terminage",
"author": "flameshikari",
"homepage": "https://github.com/flameshikari/terminage",
"license": "mit",
"type": "module",
"scripts": {
"clear": "mkdir -p public && rm -rf public/*",
"copy": "mkdir -p public && cp -rf client/static/* public",
"build": "npm run clear && npm run copy && node client/index.js",
"start": "nodemon --exec 'npm run build'"
},
"imports": {
"#root": "."
},
"nodemonConfig": {
"ignore": [
"public/*",
"node_modules/*"
],
"watch": [
"."
],
"ext": "cjs, css, js, json, md, mjs, njk, html, png"
},
"browserslist": [
"ie 10"
],
"devDependencies": {
"@chialab/esbuild-plugin-babel": "^0.18.0",
"@chialab/esbuild-plugin-html": "^0.18.2",
"browserslist-to-esbuild": "^2.1.1",
"core-js": "^3.37.1",
"esbuild": "^0.21.5",
"htmlnano": "^2.1.1",
"jquery": "^3.7.1",
"jquery-ui-dist": "^1.13.3",
"nodemon": "^3.1.3",
"rcpy": "^1.0.2",
"reflex-grid": "^2.0.8",
"svgo": "^3.3.2"
}
}