This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.4 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
61
62
63
64
65
66
67
{
"name": "ultimate-monorepo",
"private": "true",
"version": "0.0.0",
"description": "Project with Git Submodules and monorepo",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": "https://github.com/tushar1998/ultimate-monorepo.git",
"scripts": {
"build:apps": "lerna run build --scope=@tushar1998/{api,admin,web}",
"build:packages": "lerna run build --scope=@tushar1998/{core,util,types}",
"start:apps": "lerna run dev --scope=@tushar1998/{api,admin,web}",
"start:packages": "lerna run dev --stream --parallel --scope=@tushar1998/{core,util,types}",
"prepare": "husky install",
"postinstall": "pnpm bootstrap",
"lint": "eslint --fix '{apps,packages}/**/*.{ts,tsx}'",
"format": "prettier --write",
"stylelint": "stylelint --fix '**/*.{css,scss}' -i '!./apps/api/**/*'",
"bootstrap": "lerna bootstrap --hoist",
"version:publish": "ts-node ./scripts/versionAndPublish.ts",
"version:prod": "lerna version --conventional-graduate --yes",
"version:dev": "lerna version --conventional-commits --conventional-prerelease --preid beta --create-release github --yes",
"publish:packages": "lerna publish from-git --yes"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@commitlint/prompt-cli": "^17.0.3",
"@commitlint/parse": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "^18.6.4",
"@types/eslint": "^8.4.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"typescript": "^4.7.4",
"ts-node": "^10.9.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm format",
"pnpm stylelint",
"pnpm lint"
]
}
}