forked from secrez/secrez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 833 Bytes
/
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
{
"name": "root",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"test": "pnpm -r test",
"test-only": "pnpm -r run test-only",
"bin-lint": "eslint -c .eslintrc 'bin/*.js'",
"reset": "bin/clean-all-modules.sh && pnpm install",
"check-unused": "bin/check-unused.sh",
"format": "npx prettier --write .",
"README": "echo 'For new versions, rung patch-versions, pre-push and push. Then publish to publish the new package.'",
"patch-versions": "node bin/patch-versions.js",
"pre-push": "npm run format && node bin/pre-push.js",
"publish": "node bin/publish-changed-packages.js"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.8"
},
"license": "MIT"
}