forked from composer/packagist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "packagist.org",
"dependencies": {
"d3": "^3.5.17",
"instantsearch.js": "^2.7.4",
"jquery": "^3.6.0",
"nvd3": "^1.8.6",
"plausible-tracker": "^0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"zustand": "^3.6.9"
},
"devDependencies": {
"esbuild": "^0.13.15"
},
"scripts": {
"dev": "esbuild js/app.js js/charts.js --bundle --outdir=web/build --sourcemap --loader:.gif=file --loader:.eot=file --loader:.ttf=file --loader:.svg=file --loader:.woff=file --loader:.woff2=file --target=chrome58,firefox57,safari11,edge95 --watch",
"build": "esbuild js/app.js js/charts.js --bundle --outdir=web/build --minify --loader:.gif=file --loader:.eot=file --loader:.ttf=file --loader:.svg=file --loader:.woff=file --loader:.woff2=file --target=chrome58,firefox57,safari11,edge95",
"analyze": "esbuild js/app.js js/charts.js --bundle --outdir=web/build --minify --loader:.gif=file --loader:.eot=file --loader:.ttf=file --loader:.svg=file --loader:.woff=file --loader:.woff2=file --target=chrome58,firefox57,safari11,edge95 --analyze"
}
}