-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
25
26
27
28
29
30
{
"name": "bread-bucket",
"version": "0.1.0",
"description": "Crude web app to enter transactions into 'Budget with Buckets' files",
"main": "flask",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy-web-resources": "cp node_modules/p-debounce/index.js app/static/js/third-party/p-debounce.mjs",
"css-build": "node-sass --omit-source-map-url sass/mystyles.scss app/static/styles.css",
"css-watch": "npm run css-build -- --watch",
"web-build": "npm run copy-web-resources && npm run css-build",
"start": "npm run css-watch",
"docker-build": "docker build . -t cmeury/bread-bucket:latest",
"docker-push": "docker push cmeury/bread-bucket:latest",
"publish": "npm run web-build && npm run docker-build && npm run docker-push"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/cmeury/bread-bucket.git"
},
"devDependencies": {
"bulma": "^0.9.3",
"node-sass": "^6.0.1"
},
"dependencies": {
"p-debounce": "^4.0.0"
}
}