-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
138 lines (138 loc) · 3.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "money-manager",
"version": "1.10.0",
"author": "David Hulme <[email protected]>",
"description": "A desktop application for managing your personal finances and accounts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dhulme/money-manager.git"
},
"main": "./dist/electron/main.js",
"scripts": {
"build": "node .electron-vue/build.js && electron-builder",
"build:dir": "node .electron-vue/build.js && electron-builder --dir",
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
"build:web": "cross-env BUILD_TARGET=web node .electron-vue/build.js",
"dev": "node .electron-vue/dev-runner.js",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack --progress --colors --config .electron-vue/webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --colors --config .electron-vue/webpack.renderer.config.js",
"start": "npm run dev",
"test": "npm run test:unit",
"test:unit": "cross-env NODE_ENV=test BABEL_ENV=test jest --config test/unit/jest.conf.js --watch",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=test jest --config test/unit/jest.conf.js --coverage"
},
"build": {
"productName": "Money Manager",
"appId": "uk.co.dhulme.money-manager",
"directories": {
"output": "build"
},
"files": [
"dist/electron/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "logo.png"
},
"win": {
"icon": "logo.png"
},
"linux": {
"icon": "logo.png"
}
},
"dependencies": {
"big.js": "6.2.1",
"chart.js": "^2.9.4",
"crypto-random-string": "^3.3.1",
"date-fns": "2.29.1",
"fs-extra": "10.1.0",
"moment": "2.29.4",
"papaparse": "5.3.2",
"vue": "^2.6.14",
"vue-chartjs": "^3.5.1",
"vue-router": "^3.5.3",
"vuetify": "^2.6.2",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@mdi/font": "^4.9.95",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"ajv": "^6.12.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cfonts": "^2.9.3",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.1.6",
"css-loader": "^3.6.0",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^16.0.5",
"electron-builder": "^22.11.7",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^2.2.4",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"jest-serializer-vue": "^1.0.0",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "0.4.0",
"multispinner": "^0.2.1",
"node-loader": "^0.6.0",
"prettier": "^2.3.2",
"sass": "^1.45.2",
"sass-loader": "^10.2.0",
"source-map-support": "^0.5.19",
"style-loader": "^0.21.0",
"url-loader": "^2.3.0",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"prettier": {
"singleQuote": true,
"endOfLine": "crlf"
}
}