-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 607 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 607 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "alveron",
"private": true,
"packageManager": "pnpm@7.0.0",
"scripts": {
"postinstall": "pnpm turbo run setup",
"build": "pnpm turbo run build",
"release": "pnpm prepare-release && lerna publish --force-publish",
"pre-release": "pnpm prepare-release && lerna publish --force-publish --dist-tag next --preid rc",
"prepare-release": " pnpm run test && pnpm build",
"test": "pnpm turbo run test",
"coverage": "pnpm turbo run coverage"
},
"devDependencies": {
"lerna": "^8.1.3",
"prettier": "^3.3.1",
"rimraf": "^5.0.7",
"turbo": "^2.0.1"
}
}