-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "smooth-data-loader-monorepo",
"version": "1.0.0",
"private": true,
"description": "",
"author": "ChuHoMan",
"license": "ISC",
"keywords": [],
"scripts": {
"prepare": "husky install",
"lint": "eslint . --cache",
"build": "pnpm --filter \"@smooth-data-loader/*\" build",
"lint:fix": "eslint . \"**/*.{ts,tsx,js,vue,json}\" --cache --fix",
"test:e2e": "playwright test",
"release": "lerna publish --no-private",
"release-alpha": "lerna publish --no-private --dist-tag alpha",
"release-dry-run": "lerna version --no-push --no-private --no-git-tag-version",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"docs:preview": "pnpm --filter docs preview"
},
"devDependencies": {
"@chuhoman/eslint-config": "^1.0.3",
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-vue": "^4.5.2",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lerna": "^7.4.2",
"lint-staged": "^15.2.0",
"playwright": "^1.40.1",
"typescript": "^5.3.3",
"unplugin-vue-router": "^0.8.4",
"vite": "^5.0.9",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.1",
"vue-tsc": "^1.8.25"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}