-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
42 lines (42 loc) · 1.18 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
{
"private": true,
"version": "0.3.1",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"lint": "eslint --ext .ts,.tsx,.js .",
"lint:fix": "npm run lint -- --fix",
"prepare": "simple-git-hooks",
"test": "pnpm run lint && jest && pnpm run -r test:types"
},
"devDependencies": {
"@babel/core": "7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@nuxtjs/eslint-config-typescript": "10.0.0",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "8.57.1",
"jest": "28.1.3",
"jest-environment-jsdom": "^28.1.3",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"typescript": "4.9.5",
"unbuild": "^0.7.6"
},
"resolutions": {
"vue3": "npm:vue@latest"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "pnpm lint:fix"
},
"packageManager": "[email protected]"
}