-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.76 KB
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": "note-editor",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commit": "git-cz"
},
"dependencies": {
"@note-editor/vue-kit": "workspace:*",
"vue": "^3.4.21"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/cz-commitlint": "^19.2.0",
"@nx/eslint": "19.6.3",
"@nx/js": "19.6.3",
"@nx/rollup": "19.6.3",
"@nx/vite": "19.6.3",
"@nx/vue": "19.6.3",
"@nx/web": "19.6.3",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.12",
"@types/node": "18.16.9",
"@vitejs/plugin-vue": "^4.5.0",
"@vitest/ui": "1.6.0",
"@vue/test-utils": "^2.4.1",
"commitizen": "^4.3.0",
"eslint": "8.57.0",
"eslint-plugin-format": "^0.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^9.0.11",
"inquirer": "9",
"jsdom": "~22.1.0",
"lint-staged": "^15.2.2",
"nx": "19.6.3",
"prettier": "^2.6.2",
"sass": "1.62.1",
"tslib": "^2.6.2",
"typescript": "5.5.4",
"vite": "~5.0.0",
"vite-plugin-dts": "~2.3.0",
"vitepress": "^1.0.1",
"vitest": "1.6.0",
"vue-tsc": "2.0.7"
},
"lint-staged": {
"*": "eslint --fix"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}