-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.07 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
{
"name": "finance.danielmoessner.de",
"version": "0.0.0",
"description": "finance.danielmoessner.de",
"private": true,
"author": "danielmoessner",
"license": "UNLICENSED",
"dependencies": {
"@amcharts/amcharts4": "==4.10.*",
"@rollup/plugin-commonjs": "==28.0.*",
"@rollup/plugin-node-resolve": "==16.0.*",
"@rollup/plugin-terser": "==0.4.*",
"bootstrap": "==5.3.*",
"cross-env": "==7.0.*",
"rollup": "==4.29.*",
"sass": "==1.83.*"
},
"scripts": {
"css": "sass static/scss/main.scss static/app/css/main.css --load-path=node_modules",
"js:app": "rollup static/javascript/app.js --file static/app/js/app.js --format umd --plugin node-resolve --plugin commonjs --plugin terser",
"js:charts": "cross-env NODE_OPTIONS='--max-old-space-size=8192' rollup static/javascript/charts.js --file static/app/js/charts.js --format umd --inlineDynamicImports --plugin node-resolve --plugin commonjs --plugin terser",
"build": "npm run css && npm run js:app && npm run js:charts && tmp/venv/bin/python manage.py collectstatic --noinput"
}
}