-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "orangelauncher-experimental",
"version": "6.99.0",
"description": "OrangeLauncher Experimental",
"main": "./dist/main/index.js",
"repository": "[email protected]:TeamOrangeServer/OrangeLauncher-experimental.git",
"author": "sousuke0422 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "node ./utils/dev.js",
"build": "node ./utils/build.js",
"lint": "eslint --ext .js,ts,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,,ts.vue --ignore-path .gitignore ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix --ignore-path .gitignore",
"git add"
]
},
"dependencies": {
"minecraft-launcher-core": "^3.13.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@fortawesome/fontawesome-free": "^5.13.0",
"@mdi/font": "^5.1.45",
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/vuetify": "^1.11.2",
"@typescript-eslint/experimental-utils": "^3.2.0",
"@typescript-eslint/typescript-estree": "^3.2.0",
"@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.2",
"babel-eslint": "^10.1.0",
"conventional-changelog-conventionalcommits": "^4.3.0",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"electron-debug": "^3.0.1",
"electron-devtools-installer": "^3.0.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"nuxt": "^2.12.2",
"prettier": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"vue": "^2.6.11",
"vue-devtools": "^5.1.3",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.2.27",
"webpack": "^4.43.0",
"webpack-node-externals": "^1.7.2"
}
}