-
-
Notifications
You must be signed in to change notification settings - Fork 499
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 679 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "getcomposer",
"dependencies": {
"@docsearch/js": "^3.9",
"plausible-tracker": "^0.3.9",
"prismjs": "^1.27.0"
},
"devDependencies": {
"esbuild": "^0.25"
},
"scripts": {
"dev": "esbuild js/app.js --bundle --outdir=web/build --sourcemap --loader:.gif=file --target=chrome58,firefox57,safari11,edge16 --watch",
"build": "esbuild js/app.js --bundle --outdir=web/build --minify --loader:.gif=file --target=chrome58,firefox57,safari11,edge16",
"analyze": "esbuild js/app.js --bundle --outdir=web/build --minify --loader:.gif=file --target=chrome58,firefox57,safari11,edge16 --analyze"
}
}