-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.59 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "thepantry",
"version": "1.0.0",
"description": "ThePantry is a family-based ordering system that gives each household a fair share of points based on family size. Families use their points to pick food, supplies, and other items during bulk purchases, ensuring a simple, transparent, and fair distribution for everyone.",
"homepage": "https://github.com/TheCodingJsoftware/ThePantry#readme",
"bugs": {
"url": "https://github.com/TheCodingJsoftware/ThePantry/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingJsoftware/ThePantry.git"
},
"license": "GPL-3.0-only",
"author": "Jared Gross",
"scripts": {
"dev:frontend": "npx webpack --config src/config/webpack.dev.js --watch",
"dev:backend": "./.venv/bin/python main.py",
"dev": "concurrently -k -n WEBPACK,BACKEND \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "webpack --config src/config/webpack.prod.js",
"docker": "npm run build && ./docker_build.sh"
},
"devDependencies": {
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"esbuild": "^0.27.1",
"esbuild-loader": "^4.4.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob-all": "^3.3.1",
"html-webpack-plugin": "^5.6.5",
"mini-css-extract-plugin": "^2.9.4",
"purgecss-webpack-plugin": "^7.0.2",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"workbox-webpack-plugin": "^7.4.0"
},
"dependencies": {
"beercss": "^3.13.1",
"material-dynamic-colors": "^1.1.2"
}
}