-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
62 lines (62 loc) · 1.78 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
{
"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"
},
"devDependencies": {
"@akryum/sheep": "^0.5.0",
"@antfu/eslint-config": "^2.13.0",
"@histoire/vendors": "workspace:*",
"@iconify/vue": "^3.2.1",
"@vueuse/core": "^9.13.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.0.0",
"floating-vue": "2.0.0-beta.19",
"postcss": "^8.4.31",
"rimraf": "^3.0.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.4.4",
"vitepress": "1.0.0-alpha.10",
"vue-eslint-parser": "^9.3.2"
},
"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": "^2.9.0 || ^3.0.0 || ^4.0.0",
"vue": "*"
}
}
}
}