wowtoken.app/package.json
Emily Doherty 4ce5481fd0 Correct build rule to include production mode
Not that it wasn't building in production before, but this means it no longer warns it's using the default values
2023-03-04 15:48:02 -08:00

21 lines
638 B
JSON

{
"name": "wowtoken.app",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production && mkdir -p dist && cp src/robots.txt src/index.html src/style.css src/favicon.ico dist/",
"build-dev": "webpack --mode development && mkdir -p dist && cp src/robots.txt src/index.html src/style.css src/favicon.ico dist/"
},
"devDependencies": {
"webpack": "^5.73.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"cash-dom": "^8.1.2",
"chart.js": "^4.0.1",
"chartjs-adapter-dayjs-3": "^1.2.3",
"dayjs": "^1.11.6"
}
}