-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.79 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
{
"name": "journey2thecore",
"version": "1.0.0",
"description": "Journey2TheCore",
"private": true,
"scripts": {
"format": "npm-run-all --sequential format:eslint format:prettier",
"format:eslint": "eslint . --cache --ext .js,.json,.jsonc,.json5,.mcmeta,.toml,.ts --fix",
"format:prettier": "prettier --cache --write .",
"lint": "npm-run-all --parallel lint:eslint lint:prettier",
"lint:eslint": "eslint . --cache --ext .js,.json,.jsonc,.json5,.mcmeta,.toml,.ts",
"lint:prettier": "prettier --cache --loglevel error --check .",
"modlist": "ts-node ./scripts/modlist && prettier --write ./modlist.json",
"prepare": "husky install",
"setup:node": "ts-node ./scripts/nvm",
"symlink": "ts-node ./scripts/symlinker",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkPacks/Journey2TheCore.git"
},
"author": "Darkosto",
"bugs": {
"url": "https://github.com/DarkPacks/Journey2TheCore/issues"
},
"homepage": "https://github.com/DarkPacks/Journey2TheCore#readme",
"devDependencies": {
"@swc/core": "^1.3.11",
"@types/eslint": "^8.4.9",
"@types/jest": "^29.2.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vscode/sudo-prompt": "^9.3.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-editorconfig": "^4.0.2",
"eslint-plugin-json-schema-validator": "^4.0.2",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-toml": "^0.3.1",
"husky": "^8.0.1",
"is-elevated": "^3.0.0",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-properties": "^0.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}