-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "@noi/workspaces",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier -w ."
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
],
"*": [
"prettier --write --cache --ignore-unknown"
]
},
"dependencies": {
"@noi/core": "workspace:*",
"@vueuse/core": "^10.9.0",
"@vueuse/motion": "^2.1.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-istanbul": "^1.3.0",
"@vitest/ui": "^1.3.0",
"@vue/test-utils": "^2.4.5",
"autoprefixer": "^10.4.18",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-vue": "^9.24.0",
"happy-dom": "^12.10.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.35",
"prettier": "3.2.4",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.1",
"vite": "^5.2.6",
"vitest": "^1.3.0"
}
}