-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "@brainstaff/rbac-workspaces",
"version": "0.1.0",
"description": "BrainStaff workspaces.",
"main": "index.js",
"author": "Alexey Kornilov <[email protected]>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/brainstaff/js-rbac.git"
},
"scripts": {
"format": "prettier --write 'packages/*/src/**/*.ts' 'packages/*/test/**/*.ts' '.prettierrc' 'eslint.config.mjs' '**/package.json' '**/tsconfig.json'",
"lint": "eslint 'packages/*/src/**/*.ts' 'packages/*/test/**/*.ts'",
"build": "lerna run build",
"test": "lerna run test",
"f": "yarn format",
"fl": "yarn f && yarn lint",
"flb": "yarn fl && yarn build",
"flbt": "yarn flb && yarn test",
"publish-all": "yarn flbt && lerna publish --git-remote origin"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"typescript-eslint": "^8.17.0"
},
"packageManager": "[email protected]"
}