-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "pretty-preview",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:core": "pnpm --filter ./packages/core build:dev --watch",
"dev:example": "pnpm --filter ./packages/example dev",
"dev": "concurrently \"pnpm run dev:core\" \"pnpm run dev:example\"",
"build": "pnpm --filter ./packages/core build",
"build:example": "pnpm --filter ./packages/example build",
"release": "pnpm --filter ./packages/core release",
"test": "pnpm --filter ./packages/core test",
"coverage": "pnpm --filter ./packages/core coverage",
"codecov": "pnpm --filter ./packages/core codecov",
"lint": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^6.3.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.0",
"lint-staged": "^14.0.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}