generated from dhruv-m-patel/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.92 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
54
55
56
57
58
59
60
{
"name": "lerna-monorepo-sample",
"private": true,
"engines": {
"node": ">= 14.17.0"
},
"workspaces": [
"service",
"web-app"
],
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"cli-glob": "^0.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"typescript": "4.3.4"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"eslint ."
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"bundle:api": "lerna run bundle:api",
"ci:build": "lerna run build --stream",
"ci:test": "lerna run test:ci --stream",
"ci:lint": "eslint . && yarn run lint:spec && yarn prettier:verify",
"clean": "lerna clean -y",
"diff": "lerna diff",
"start": "lerna run start --stream",
"start:prod": "lerna run start --stream -- -- dotenv_config_path=../../.env",
"dev": "lerna run dev --stream -- -- dotenv_config_path=../../.env",
"test": "lerna run test --stream",
"lint": "eslint . && yarn run lint:spec && yarn prettier:verify",
"lint:spec": "glob '**/src/**/api-spec.yaml' | xargs -n1 npx swagger-cli validate",
"lint:fix": "lerna run lint:fix --stream",
"pretest": "jest --clearCache",
"prettier:format": "prettier --write .",
"prettier:verify": "prettier --check .",
"storybook": "lerna run storybook --stream",
"build-storybook": "lerna run build-storybook --stream",
"version": "lerna version --yes"
}
}