-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.19 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
{
"private": true,
"name": "aumi",
"scripts": {
"new": "modern new",
"reset": "modern clear",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"prepare": "husky install",
"change-status": "modern change-status",
"gen-release-note": "modern gen-release-note",
"release": "modern release",
"deploy": "modern deploy",
"lint": "modern lint",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/",
".rpt2_cache/"
],
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"devDependencies": {
"@modern-js/monorepo-tools": "2.58.0",
"@modern-js/eslint-config": "2.58.0",
"@modern-js/tsconfig": "2.58.0",
"@modern-js-app/eslint-config": "2.58.0",
"lint-staged": "~13.1.0",
"prettier": "^2.6.2",
"husky": "^8.0.0",
"typescript": "^5.4.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}