-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@dhruv-m-patel/packages",
"private": true,
"engines": {
"node": ">= 18",
"npm": ">= 10",
"yarn": ">= 3"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@babel/eslint-plugin": "^7.23.5",
"@changesets/cli": "^2.27.1",
"@dhruv-m-patel/eslint-config-base": "workspace:^",
"@types/node": "^18.14.0",
"cli-glob": "^0.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lerna": "^8.0.2",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"syncpack": "^9.8.6",
"typescript": "4.3.4"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"eslint ."
]
},
"scripts": {
"build": "lerna run build --stream",
"ci:build": "lerna run build --stream",
"ci:test": "lerna run test:ci --stream",
"ci:lint": "eslint . && yarn prettier:verify",
"clean": "lerna clean -y",
"diff": "lerna diff",
"test": "lerna run test --stream",
"lint": "eslint . && yarn prettier:verify",
"lint:fix": "lerna run lint:fix --stream",
"pretest": "jest --clearCache",
"prettier:format": "prettier --write .",
"prettier:verify": "prettier --check .",
"publish": "yarn workspaces foreach --no-private --from '@dhruv-m-patel/*' npm publish --access public && yarn changeset tag",
"storybook": "lerna run storybook --stream",
"build-storybook": "lerna run build-storybook --stream",
"version": "yarn changeset version"
},
"packageManager": "[email protected]"
}