-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "@youmiya/monorepo",
"private": true,
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test:run",
"report:coverage": "nx run-many -t report:coverage",
"new": "modern new",
"reset": "modern clear",
"change": "modern change",
"bump": "modern bump",
"prepare": "husky install",
"change-status": "modern change-status",
"release": "pnpm build && modern release",
"lint": "modern lint",
"upgrade": "modern upgrade",
"nx": "nx"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"devDependencies": {
"@modern-js-app/eslint-config": "2.49.3",
"@modern-js/eslint-config": "2.49.3",
"@modern-js/monorepo-tools": "2.49.3",
"@modern-js/tsconfig": "2.49.3",
"@modern-js/module-tools": "2.49.2",
"@types/node": "^18.0.0",
"@vitest/coverage-v8": "^1.6.0",
"coveralls-next": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "~13.1.0",
"nx": "19.0.3",
"prettier": "^2.6.2",
"rimraf": "~3.0.2",
"tsx": "^4.10.2",
"typescript": "~5.0.4",
"vite-plugin-swc-transform": "^0.3.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}