forked from histoire-dev/histoire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
65
66
67
68
69
70
{
"name": "histoire-monorepo",
"version": "0.16.5",
"private": true,
"repository": {
"url": "https://github.com/Akryum/histoire.git",
"type": "git"
},
"scripts": {
"lint": "eslint . --ext js,vue,ts --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",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"engines": {
"node": ">14.5.0"
},
"devDependencies": {
"@akryum/sheep": "^0.5.0",
"@histoire/vendors": "workspace:*",
"@iconify/vue": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vueuse/core": "^9.13.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"floating-vue": "2.0.0-beta.19",
"postcss": "^8.4.27",
"rimraf": "^3.0.2",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"vitepress": "1.0.0-alpha.10",
"vue-eslint-parser": "^9.3.1"
},
"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": "*"
}
}
},
"packageManager": "[email protected]"
}