forked from NordSecurity/storyblok-rich-text-astro-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "storyblok-rich-text-astro-renderer-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"./lib",
"./demo"
],
"scripts": {
"build": "npm run build --workspace=lib --workspace=demo",
"demo": "npm run try --workspace=demo",
"dev:demo": "npm run dev --workspace=demo",
"dev:lib": "npm run dev --workspace=lib",
"format": "npm run format:package-json && npm run format:prettier",
"format:package-json": "sort-package-json package.json lib/package.json",
"format:prettier": "prettier --write .",
"lint": "eslint . --ext .js,.ts,.astro",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"qa": "npm run test && npm run lint && npm run prettier:check",
"test": "npm run test:unit --workspace=lib"
},
"lint-staged": {
"*.{astro,js,css}": [
"prettier --write",
"eslint"
],
"*.md": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.29.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"sort-package-json": "^2.5.1",
"typescript": "^5.1.3",
"vitest": "^0.34.3"
},
"volta": {
"node": "18.14.1"
}
}