This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "peeky-mono-repo",
"version": "0.14.2",
"private": true,
"repository": {
"url": "https://github.com/Akryum/peeky.git",
"type": "git"
},
"scripts": {
"lint": "eslint . --ext js,vue,ts",
"build": "pnpm run --filter \"./packages/**\" -r build",
"watch": "pnpm run build && pnpm run --parallel --filter \"./packages/**\" -r watch",
"test": "pnpm run --parallel --filter \"./packages/**\" -r test",
"release": "pnpm run lint && pnpm run build && pnpm run test && sheep release -b master",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"engines": {
"node": ">14.5.0"
},
"devDependencies": {
"@akryum/sheep": "^0.4.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.12",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-vue": "^9.5.1",
"postcss": "^8.2.4",
"postcss-nested": "^5.0.3",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.2",
"typescript": "^4.8.3",
"vitepress": "^0.20.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom"
]
}
}
}