-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.95 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
{
"name": "hyarcade",
"version": "2.8.0",
"private": true,
"description": "A full system for gathering and displaying peoples hypixel arcade games stats",
"main": "index.js",
"packageManager": "yarn@3.2.0",
"author": "EatMyVenom",
"license": "MPL-2.0",
"homepage": "https://github.com/eatmyvenom/hyarcade#readme",
"bugs": {
"url": "https://github.com/eatmyvenom/hyarcade/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eatmyvenom/hyarcade.git"
},
"readme": "README.md",
"maintainers": [
"EatMyVenom"
],
"scripts": {
"build": "turbo run build --parallel --cache-dir='.turbo'",
"build:docs": "yarn workspace @hyarcade/redoc build:docs",
"build:worker": "cd src/Worker;wrangler publish;cd ../..",
"changelog": "git cliff --output ./CHANGELOG.md -c ./cliff.toml && yarn postchangelog",
"postchangelog": "git add CHANGELOG.md && git commit -m 'chore: generate changelog'",
"postinstall": "is-ci || husky install",
"commit": "cz",
"tag:patch": "yarn changelog && npm version patch -m 'build: :bookmark: %s'",
"tag:minor": "yarn changelog && npm version minor -m 'build: :bookmark: %s'",
"tag:major": "yarn changelog && npm version major -m 'build: :bookmark: %s'",
"lint": "eslint './{packages,systems}/**/*.{js,mjs,ts}' --fix",
"bot": "yarn workspace bot",
"api": "yarn workspace api",
"site": "yarn workspace site",
"worker": "yarn workspace @hyarcade/datagen",
"cli": "yarn workspace @hyarcade/cli start",
"start": "yarn cli",
"refreshcache": "yarn cli cachelbs"
},
"dependencies": {
"@commitlint/config-angular": "^16.2.3",
"fs-extra": "^10.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.164",
"@swc/helpers": "^0.3.8",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"commitizen": "^4.2.4",
"commitlint": "^16.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"prettier": "^2.6.2",
"turbo": "^1.2.1"
},
"engines": {
"node": ">=16.14.0",
"yarn": ">=3.2.0",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"workspaces": [
"packages/*",
"systems/*"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}