-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.47 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
{
"name": "billy",
"productName": "billy",
"version": "0.0.9",
"description": "A simple invoice manager built with Electron.",
"main": "dist/src/index.js",
"scripts": {
"setup": "npm run recreate-database",
"prestart": "npm run build",
"start": "NODE_ENV=development && electron-forge start",
"build": "npm run clean && tsc && npm run copy-html",
"package": "electron-forge package",
"recreate-database": "rimraf bills.sqlite && knex migrate:latest && knex seed:run",
"clean:mac": "rimraf ~/Library/Application\\ Support/billy/Settings",
"make": "electron-forge make",
"copy-html": "cp -r static/*.html dist/src",
"publish": "electron-forge publish",
"clean": "rimraf dist/*",
"lint": "eslint --ext .ts .",
"test": "npm run build && NODE_ENV=development electron-mocha 'dist/test/**/*Test.js'",
"test:watch": "nodemon -w ./src -w ./test -e ts,tsx -x npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haimich/billy.git"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.1.0"
},
"author": "Michael Mueller <[email protected]>",
"contributors": [
"J. Kissel"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/haimich/billy/issues"
},
"dependencies": {
"basic-csv": "0.0.2",
"bootstrap": "^3.3.6",
"chart.js": "^1.1.1",
"electron-localshortcut": "^3.2.1",
"electron-settings": "^4.0.2",
"electron-squirrel-startup": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"font-awesome": "^4.7.0",
"knex": "^0.12.5",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"open": "^8.0.7",
"react": "^15.2.1",
"react-bootstrap-table": "^4.3.1",
"react-bootstrap-toggle": "^2.0.4",
"react-bootstrap-typeahead": "^0.9.2",
"react-chartjs": "^0.8.0",
"react-countup": "^1.3.0",
"react-datetime": "^2.6.0",
"react-dom": "^15.3.0",
"react-notification-system": "^0.2.9",
"react-textarea-autosize": "^4.0.5",
"rimraf": "^2.5.4",
"sqlite3": "5.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"@types/chai": "^3.4.32",
"@types/knex": "^0.0.39",
"@types/mkdirp": "^0.3.28",
"@types/mocha": "^2.2.38",
"@types/node": "^14.0.0",
"@types/react": "^15.0.0",
"@types/react-bootstrap-table": "^4.3.0",
"@types/react-dom": "^0.14.14",
"@types/react-notification-system": "^0.2.28",
"@types/rimraf": "0.0.28",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^3.5.0",
"chance": "^1.0.4",
"devtron": "^1.3.0",
"electron": "11.1.1",
"electron-mocha": "^3.1.0",
"eslint": "^7.18.0",
"mocha": "^3.0.2",
"nodemon": "^1.11.0",
"typescript": "^4.1.3"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "billy_kid"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
}
}