-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "histoire-monorepo",
"version": "0.17.17",
"private": true,
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/Akryum/histoire.git",
"type": "git"
},
"engines": {
"node": ">14.5.0"
},
"scripts": {
"lint": "eslint . --cache",
"build": "pnpm run -r build",
"watch": "pnpm run build && pnpm run -r --parallel --filter \"./packages/**\" watch",
"test": "pnpm run -r --parallel --filter \"./packages/**\" test",
"test:dev": "pnpm run -r --parallel --filter \"./packages/**\" test:dev",
"test:examples": "pnpm run -r --workspace-concurrency 1 --filter \"./examples/**\" test:examples",
"release": "pnpm run lint && pnpm run test && pnpm run build && sheep release -b main --force",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"update": "pnpm --recursive update --latest"
},
"devDependencies": {
"@akryum/sheep": "^0.5.2",
"@antfu/eslint-config": "^3.11.2",
"@histoire/vendors": "workspace:*",
"@iconify/vue": "^4.1.2",
"@vueuse/core": "^12.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-plugin-cypress": "^4.1.0",
"floating-vue": "5.2.2",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.16",
"typescript": "5.6.3",
"vitepress": "1.5.0",
"vue-eslint-parser": "^9.4.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"eslint",
"react",
"react-dom",
"vue",
"vue-template-compiler",
"webpack"
],
"allowedVersions": {
"eslint": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-vue": "*",
"vite": "^6.0.1",
"vue": "*"
}
}
}
}