This repository has been archived by the owner on Dec 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.13 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
{
"name": "glowsquid-next",
"version": "0.0.1",
"description": "The glowsquid modloader",
"main": "./dist/main/index.js",
"scripts": {
"dev": "node .electron-nuxt/dev.js",
"build": "node .electron-nuxt/build.js",
"test:unit": "cross-env NODE_ENV=test TEST_TYPE=unit ava",
"test:e2e": "cross-env NODE_ENV=test TEST_TYPE=e2e ava",
"test": "yarn run test:unit && yarn run test:e2e",
"lint": "node_modules/.bin/eslint --ext .js,.vue,.ts -f ./node_modules/eslint-friendly-formatter ./src",
"lint:fix": "yarn run lint -- --fix",
"preinstall": "node .electron-nuxt/check-engines.js",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [],
"author": "Suyashtnt <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/michalzaq12/electron-nuxt/blob/master/README.md",
"engines": {
"node": ">=12.13.0"
},
"resolutions": {
"@types/node": "14.14.22"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@mdi/font": "5.9.55",
"@nuxt/types": "2.14.12",
"@nuxt/typescript-build": "2.0.4",
"@nuxtjs/eslint-config-typescript": "5.0.0",
"@nuxtjs/tailwindcss": "3.4.2",
"@nuxtjs/vuetify": "1.11.3",
"@tailwindcss/postcss7-compat": "2.0.2",
"@types/discord-rpc": "^3.0.5",
"@types/dompurify": "2.2.1",
"@types/marked": "1.2.1",
"@types/shelljs": "0.8.8",
"@types/webdriverio": "5.0.0",
"@vue/test-utils": "1.1.2",
"@xpda-dev/core": "0.1.5",
"@xpda-dev/electron-builder": "0.2.1",
"@xpda-dev/electron-launcher": "0.2.1",
"@xpda-dev/webpack-step": "^0.1.6",
"autoprefixer": "10.2.4",
"ava": "2.4.0",
"babel-plugin-webpack-alias-7": "0.1.1",
"browser-env": "3.3.0",
"cross-env": "7.0.3",
"deepmerge": "4.2.2",
"electron": "11.2.1",
"electron-builder": "22.9.1",
"electron-debug": "3.2.0",
"electron-devtools-installer": "3.1.1",
"electron-typed-ipc": "^0.1.0",
"eslint": "7.18.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "4.0.2",
"husky": "4.3.8",
"native-ext-loader": "2.3.0",
"nuxt": "2.14.12",
"postcss": "7.0.36",
"require-extension-hooks": "0.3.3",
"require-extension-hooks-babel": "1.0.0",
"require-extension-hooks-vue": "3.0.0",
"roboto-fontface": "0.10.0",
"spectron": "13.0.0",
"stylus": "0.54.8",
"stylus-loader": "4.3.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-loader": "8.0.14",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"vls": "0.7.0",
"vue-meta": "2.4.0",
"vuetify": "2.4.3",
"webpack": "4.46.0",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.5",
"@nuxtjs/toast": "^3.3.1",
"@types/node": "14.14.22",
"discord-rpc": "^3.1.4",
"dompurify": "^2.2.6",
"electron-store": "^7.0.0",
"marked": "^2.0.0",
"minecraft-launcher-core": "^3.16.4",
"nuxt-i18n": "^6.18.0",
"shelljs": "^0.8.4",
"vuex": "^3.6.2",
"vuex-module-decorators": "^1.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}