forked from newcat/baklavajs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "baklavajs-monorepo",
"private": true,
"scripts": {
"playground": "cd packages/renderer-vue && yarn run dev",
"lint": "eslint \"packages/*/src/**/*.{ts,vue}\"",
"build": "lerna run build",
"test": "lerna run test",
"clean": "rimraf ./packages/*/dist && rimraf ./packages/full/lib",
"generate-api-docs": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"version": "yarn install && git stage yarn.lock"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.21.1",
"lerna": "^8.1.2",
"mermaid": "^10.8.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"rimraf": "^5.0.5",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"vitepress": "^1.0.0-rc.43",
"vue-eslint-parser": "^9.4.2"
},
"packageManager": "[email protected]"
}