-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
37
38
{
"name": "meta-cms-worker-packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"clean": "rimraf packages/**/lib",
"format": "prettier --write 'packages/**/src/**/*.ts'",
"lint": "eslint 'packages/**/src/**/*.ts' --fix",
"publish": "lerna publish",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"ava": "^4.0.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": ">=6",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}