-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (21 loc) · 862 Bytes
/
package.json
File metadata and controls
22 lines (21 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"type": "module",
"devDependencies": {
"concurrently": "latest",
"esbuild": "latest",
"sass": "latest",
"typescript": "latest"
},
"scripts": {
"start": "concurrently --kill-others \"npm run start:serve\" \"npm run start:sass\"",
"start:serve": "npx esbuild ./script/Index.ts --bundle --serve=localhost:8081 --servedir=. --external:./dist/* --sourcemap --format=esm --target=esnext --outdir=dist",
"start:sass": "npx sass --watch ./style:./dist",
"build": "npm run build:clean && npm run build:sass && npm run build:ts",
"build:clean": "rm -rf ./dist/*",
"build:sass": "npx sass --style=compressed ./style:./dist",
"build:ts": "npx esbuild ./script/Index.ts --minify --bundle --format=esm --target=esnext --legal-comments=none --outdir=dist"
},
"dependencies": {
"@intermesh/goui": "latest"
}
}