-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 918 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
28
29
30
31
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "run-s -csn lint:eslint lint:prettier",
"fix": "run-s -csn fix:eslint fix:prettier",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"lint:eslint": "eslint --ext .ts,.tsx,.js .",
"fix:eslint": "eslint --ext .ts,.tsx,.js . --fix",
"clean": "run-s -csn clean:dist clean:lerna",
"clean:lerna": "lerna clean",
"clean:dist": "lerna run clean",
"build": "lerna run build",
"publish": "lerna publish --force-publish *"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"lerna": "^6.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}