generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.32 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
{
"private": true,
"name": "@twin.arco/mono",
"scripts": {
"new": "modern new",
"reset": "modern clear",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"release": "modern release",
"deploy": "modern deploy",
"lint": "modern lint",
"docs:dev": "pnpm --filter @twin.arco/docs run dev",
"docs:build": "pnpm --filter @twin.arco/docs run build"
},
"engines": {
"node": ">=14.17.6"
},
"eslintConfig": {
"extends": [
"@modern-js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet",
"git add"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet",
"git add"
]
},
"eslintIgnore": [
"node_modules/",
"dist/",
".rpt2_cache/"
],
"workspaces": {
"packages": [
"apps/*",
"examples/*",
"features/*",
"packages/*"
]
},
"devDependencies": {
"@modern-js/monorepo-tools": "^1.1.1",
"@modern-js/plugin-jarvis": "^1.1.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}