-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "budgetcalculator",
"version": "1.0.0",
"description": "a simple budget, income and expenses calculator",
"watch": {
"build:html": {
"patterns": [
"src"
],
"extensions": "html"
},
"build:js": {
"patterns": [
"src/assets/js"
],
"extensions": "js"
},
"build:css": {
"patterns": [
"src/assets/scss"
],
"extensions": "scss"
}
},
"scripts": {
"watch": "npm-watch",
"build:css": "sass src/assets/scss/style.scss docs/assets/css/style.css --load-path=node_modules --style=compressed --embed-sources",
"build:js": "webpack-cli --config ./webpack.config.js",
"build:html": "copy \"src\\index.html\" \"docs\"",
"server": "node ./node_modules/http-server/bin/http-server ./docs -o /index.html out",
"//": "npm run dev: run this for development work, will run a server, watch for file changes and compile where necessary",
"dev": "concurrently \"npm:server\" \"npm:watch*\" "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.0.0",
"http-server": "^14.1.0",
"localforage": "^1.10.0",
"npm-watch": "^0.11.0",
"sass": "^1.49.9",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"vuedraggable": "^4.1.0"
}
}