-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1014 Bytes
/
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
{
"name": "DraftBudget",
"version": "1.0.0",
"description": "A basic budget creator app written in vanilla JavaScript",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"serve": "webpack serve",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmrk/DraftBudget.git"
},
"keywords": [],
"author": "Tamas Marki",
"license": "MIT",
"bugs": {
"url": "https://github.com/tmrk/DraftBudget/issues"
},
"homepage": "https://tmrk.github.io/DraftBudget/",
"devDependencies": {
"css-loader": "^6.7.1",
"gh-pages": "^4.0.0",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"exceljs": "^4.3.0",
"util": "^0.12.4"
},
"main": "webpack.config.js"
}