-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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": "courthive-mobile",
"private": true,
"version": "2.0.2",
"type": "module",
"engines": {
"node": "20",
"pnpm": ">=8",
"npm": "please-use-pnpm"
},
"scripts": {
"analyze": "source-map-explorer 'dist/**/*.js'",
"build": "tsc && vite build --mode development",
"build:patch": "pnpm run commits && pnpm version $(semver $npm_package_version -i patch) && pnpm build",
"commits": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges --pretty=format:'%s: %h' | sed '/courthive-mobile/d'",
"launch": "http-server dist -o",
"build:prod": "tsc && vite build --mode production",
"check-types": "tsc --noEmit",
"commit": "git-cz",
"config": "node config.mjs",
"format": "prettier --write src",
"lint": "eslint src --fix --cache",
"pre-commit": "lint-staged",
"prepare": "rimraf dist",
"preview": "vite preview",
"postbuild": "./addVersion $npm_package_version",
"start": "pnpm run config --check && vite --open",
"test": "TZ=UTC vitest"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"c8": "9.1.0",
"clipboard": "2.0.11",
"cz-git": "1.9.3",
"dotenv": "16.4.5",
"envfile": "7.1.0",
"eslint": "8.57.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-sonarjs": "0.25.1",
"husky": "9.0.11",
"inquirer": "9.3.5",
"lint-staged": "15.2.7",
"prettier": "3.2.5",
"rimraf": "5.0.9",
"semver": "7.6.2",
"socket.io-client": "4.7.5",
"source-map-explorer": "2.5.3",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0",
"vitest-github-actions-reporter": "0.11.1",
"vitest-sonar-reporter": "2.0.0",
"yargs": "17.7.2"
},
"dependencies": {
"animate.css": "^4.1.1",
"axios": "^1.6.5",
"bulma": "^1.0.0",
"d3": "4.13.0",
"jwt-decode": "^4.0.0",
"navigo": "^8.11.1"
}
}