odin-codespace/todo/package.json

30 lines
741 B
JSON
Raw Normal View History

2023-12-26 10:04:00 -05:00
{
"name": "todo",
"version": "1.0.0",
2023-12-26 10:17:10 -05:00
"description": "Vanilla template for webpack",
2023-12-26 10:04:00 -05:00
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
2024-01-07 22:34:20 -05:00
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
2023-12-26 10:04:00 -05:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
2023-12-26 10:17:10 -05:00
"html-webpack-plugin": "^5.5.4",
"inline-source-map": "^0.6.2",
2023-12-26 10:04:00 -05:00
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
2024-01-07 22:34:20 -05:00
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
2023-12-29 07:28:13 -05:00
},
"dependencies": {
"date-fns": "^3.0.6"
2023-12-26 10:04:00 -05:00
}
}