-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "statsify",
"description": "",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Statsify/statsify.git"
},
"scripts": {
"build": "turbo run build --filter=!site --parallel --cache-dir='.turbo'",
"build:watch": "pnpm build --force && pnpm --filter scripts build-watch",
"test:types": "turbo run test:types --cache-dir='.turbo'",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "turbo run lint --parallel --cache-dir='.turbo'",
"pre-commit": "pnpm lint && pnpm test:types && pnpm test:coverage && git add .",
"commit": "pnpm pre-commit && git cz",
"api": "pnpm --filter api",
"discord-bot": "pnpm --filter discord-bot",
"support-bot": "pnpm --filter support-bot",
"site": "pnpm --filter site",
"scripts": "pnpm --filter scripts",
"verify-server": "pnpm --filter verify-server"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@napi-rs/cli": "^2.18.4",
"@rollup/pluginutils": "^5.1.0",
"@stylistic/eslint-plugin": "^2.7.2",
"@swc/cli": "^0.4.0",
"@swc/core": "1.7.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"chokidar": "^3.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.9.1",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"pm2": "^5.4.2",
"turbo": "^2.1.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.3.0",
"unplugin": "^1.12.3",
"vitest": "^2.0.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pnpm": {
"overrides": {
"countup.js": "2.6.0"
}
}
}