forked from FTBTeam/FTB-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.36 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
{
"name": "ftb-app",
"version": "1.6.3",
"private": true,
"main": "background.js",
"author": "Feed The Beast",
"description": "FTB Desktop App for downloading and managing Modpacks",
"scripts": {
"serve": "cross-env TARGET_PLATFORM=electron NODE_ENV=development vue-cli-service electron:serve",
"serve:overwolf": "cross-env TARGET_PLATFORM=overwolf cross-env NODE_ENV=development vue-cli-service electron:serve",
"lint": "vue-cli-service lint",
"test": "jest",
"vue:build": "cross-env TARGET_PLATFORM=electron vue-cli-service build",
"vue:build:overwolf": "cross-env TARGET_PLATFORM=overwolf NODE_ENV=production vue-cli-service build --mode overwolf",
"vue:serve": "cross-env TARGET_PLATFORM=electron vue-cli-service serve",
"vue:serve:overwolf": "cross-env TARGET_PLATFORM=overwolf NODE_ENV=development vue-cli-service build --watch --mode overwolf",
"build": "vue-cli-service electron:build",
"build:electron": "vue-cli-service electron:build -ml --x64",
"gen:license": "license-checker --json > licenses.json",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"engines": {
"node": "^18",
"npm": "dont-use-npm",
"yarn": "dont-use-yarn"
},
"dependencies": {
"@sentry/tracing": "^6.19.7",
"@sentry/vue": "^6.19.7",
"balloon-css": "^1.2.0",
"dayjs": "^1.11.7",
"electron": "^22.3.3",
"markdown-it": "^13.0.1",
"mitt": "^3.0.0",
"semver": "^7.3.2",
"tailwindcss": "^1.9.6",
"vue": "^2.7.14",
"vue-native-websocket": "^2.0.14",
"vue-router": "^3.1.6",
"vue-virtual-scroller": "^1.1.2",
"vuex": "^3.4.0",
"vuex-class": "^0.3.2",
"wysiwyg.css": "^0.0.4"
},
"resolutions": {
"@achrinza/node-ipc": "^10.1.7"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@overwolf/ow-cli": "0.0.5-0",
"@overwolf/types": "^3.16.0",
"@sentry/webpack-plugin": "^1.18.9",
"@types/jest": "^29.4.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^7.2.0",
"@types/webpack-env": "1.16.0",
"@types/xml2js": "^0.4.9",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-typescript": "^4.5.19",
"@vue/cli-plugin-unit-jest": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/devtools": "^6.5.0",
"@vue/test-utils": "1.0.2",
"@vue/vue2-jest": "28",
"archiver": "^5.3.1",
"babel-core": "7.0.0-bridge.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.3",
"electron-devtools-installer": "^3.2.0",
"electron-dl": "^3.0.0",
"electron-log": "^4.1.2",
"jest": "^29.4.3",
"license-checker": "25.0.1",
"sass": "^1.35.1",
"sass-loader": "^10.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vue-class-component": "^7.2.3",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.11"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}