-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.39 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
{
"name": "ch-project-template",
"private": true,
"version": "1.2.4",
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=8",
"npm": "please-use-pnpm"
},
"scripts": {
"analyze": "source-map-explorer 'dist/**/*.js'",
"build": "tsc && vite build",
"build:prod": "rimraf dist && tsc && vite build --mode production && npm version $(semver $npm_package_version -i patch) && pnpm prepublishOnly",
"docs:publish": "pnpm build:prod && git checkout docs && cp -r dist/* docs && git add docs && git commit -m 'docs: update' && git push && git checkout master",
"check-types": "tsc --noEmit",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"config": "node config.mjs",
"format": "prettier --write src",
"lint": "eslint src --fix --cache",
"lint:staged": "TZ=UTC lint-staged",
"pre-commit": "lint-staged",
"prepare": "rimraf dist && husky",
"preview": "vite preview",
"prepublishOnly": "./addVersion $npm_package_version",
"start": "pnpm run config --check && vite --open",
"test": "TZ=UTC vitest"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write",
"**/*.ts": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "2.1.1",
"@vitest/ui": "2.1.1",
"c8": "10.1.2",
"cz-git": "1.9.4",
"dotenv": "16.4.5",
"envfile": "7.1.0",
"eslint": "8.57.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-sonarjs": "1.0.4",
"husky": "9.1.6",
"inquirer": "10.2.2",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"source-map-explorer": "2.5.3",
"typescript": "5.5.3",
"vite": "5.4.6",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.1.1",
"vitest-github-actions-reporter": "0.11.1",
"vitest-sonar-reporter": "2.0.0",
"yargs": "17.7.2"
},
"dependencies": {
"axios": "1.7.7",
"bulma": "^1.0.0",
"courthive-components": "^0.7.21",
"dayjs": "^1.11.10",
"hotkeys-js": "^3.13.7",
"navigo": "8.11.1",
"normalize-text": "^2.5.0",
"semver": "^7.6.0",
"tabulator-tables": "^6.0.0",
"tippy.js": "^6.3.7",
"tods-competition-factory": "^2.2.1"
}
}