-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.35 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
{
"name": "backup",
"version": "1.0.0",
"private": true,
"description": "",
"author": "",
"scripts": {
"serve": "vue-cli-service serve",
"build-frontend": "vue-cli-service build",
"build-backend": "tsc --project tsconfig-backend.json",
"build": "npm run build-backend && npm run build-frontend",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist-mac": "electron-builder -m --publish never",
"dist": "electron-builder -wl --publish never",
"lint": "npx eslint -c .eslintrc.js ./src/**/*.vue ./src/**/*.ts"
},
"main": "index.js",
"dependencies": {
"@heroicons/vue": "1.0.5",
"@tailwindcss/aspect-ratio": "0.3.0",
"@tailwindcss/forms": "0.3.4",
"@types/ramda": "0.27.48",
"autoprefixer": "9.8.8",
"electron-serve": "1.1.0",
"execa": "5.1.1",
"fs-extra": "^10.0.0",
"postcss": "8.2.13",
"pretty-bytes": "5.6.0",
"ramda": "0.27.1",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"tslib": "^2.3.1",
"vue": "3.2.22",
"vue-router": "4.0.12",
"vuex": "4.0.2"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/node": "^17.0.8",
"@types/web": "^0.0.49",
"@typescript-eslint/parser": "^5.6.0",
"@vue/cli-plugin-router": "4.5.15",
"@vue/cli-plugin-typescript": "4.5.15",
"@vue/cli-plugin-vuex": "4.5.15",
"@vue/cli-service": "4.5.15",
"electron": "15.3.0",
"electron-builder": "22.13.1",
"eslint": "^8.4.1",
"prettier": "2.4.1",
"tailwind-scrollbar": "^1.3.1",
"typescript": "4.1.5",
"vue-eslint-parser": "^8.0.1"
},
"build": {
"appId": "storjrd.backup",
"directories": {
"output": "output"
},
"mac": {
"icon": "./icon.png",
"category": "storjrd.backup.category.type"
},
"win": {
"icon": "./icon.png"
},
"linux": {
"icon": "./icon.png"
},
"files": [
"node_modules",
"bin",
"dist",
"lib",
"*.js",
"package.json",
"public/icon.png"
],
"extraResources": [
{
"from": "restic",
"to": "restic"
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"_id": "[email protected]",
"bugs": {
"url": "https://github.com/storjrd/backup/issues"
},
"homepage": "https://github.com/storjrd/backup#readme",
"license": "ISC",
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/storjrd/backup.git"
}
}