-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 994 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 994 Bytes
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
{
"name": "monoblok",
"private": true,
"version": "0.1.0",
"description": "Official monorepo for Storyblok open source packages",
"packageManager": "pnpm@10.27.0",
"type": "module",
"scripts": {
"monoblok": "node tools/monoblok/dist/index.mjs",
"prepare": "husky",
"release": "node tools/release.mjs",
"build": "pnpm nx run-many --target=build -p=tag:npm:public",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint --fix",
"lint:affected": "nx affected:lint"
},
"workspaces": [
"packages/*",
"tools/*"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nx/js": "21.3.11",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"nx": "21.3.11",
"typescript": "5.8.3"
},
"resolutions": {
"cypress": "^14.3.3"
},
"pnpm": {
"overrides": {
"happy-dom": "^20.8.8"
}
},
"dependencies": {
"cypress": "^14.3.3"
}
}