-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
{
"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": "turbo watch build --filter=!site",
"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.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.19.0",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@napi-rs/cli": "^2.18.4",
"@rollup/pluginutils": "^5.1.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "1.10.12",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.19.0",
"eslint-plugin-license-header": "^0.6.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"pm2": "^5.4.2",
"turbo": "^2.4.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.22.0",
"unplugin": "^2.1.2",
"vitest": "^3.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pnpm": {
"overrides": {
"countup.js": "2.6.0"
}
}
}