forked from jianghr-rr/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "monorepo",
"version": "1.0.0",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deps:check": "npx npm-check-updates@latest --configFileName ncurc.yml --workspaces --root --mergeConfig",
"deps:update": "npx npm-check-updates@latest --configFileName ncurc.yml -u --workspaces --root --mergeConfig",
"g:lint": "TIMING=1 turbo run lint --cache-dir=.cache/turbo --color",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:lint-styles": "turbo run lint-styles --cache-dir=.cache/turbo --color",
"build-main-app": "turbo run build-main-app",
"migrations-generate-main-app": "turbo run migrations-generate-main-app"
},
"dependencies": {
"cross-env": "7.0.3"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/shell-quote": "1.7.5",
"@types/node": "18.0.2",
"@bid-np/eslint-config-bases": "workspace:*",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"shell-quote": "1.8.1",
"syncpack": "12.3.0",
"turbo": "1.13.0",
"typescript": "5.4.3"
},
"engines": {
"node": ">=18.0.0",
"npm": "please-use-pnpm"
},
"workspaces": [
"apps/*",
"packages/*"
]
}