-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"name": "reduck-monorepo",
"description": "The meta-framework suite designed from scratch for frontend-focused modern web development.",
"homepage": "https://modernjs.dev",
"bugs": "https://github.com/modern-js-dev/reduck/issues",
"repository": "modern-js-dev/reduck",
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js",
"state",
"reduck"
],
"scripts": {
"new": "modern new",
"setup": "npm run reset && pnpm install",
"reset": "pnpm -r exec rm -rf node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"release": "modern release",
"prepare": "husky install",
"preinstall": "only-allow-pnpm",
"gen-release-note": "modern gen-release-note"
},
"engines": {
"node": ">=12.13.0"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm exec eslint --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"pnpm exec eslint --fix --color --cache --quiet"
]
},
"eslintConfig": {
"extends": [
"@modern-js"
],
"ignorePatterns": [
"dist",
"lcov-report",
"examples",
"common"
]
},
"eslintIgnore": [
"node_modules/",
"dist/",
"lib/",
".rpt2_cache/"
],
"workspaces": {
"packages": [
"packages/*",
"packages/**/*"
]
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@modern-js-reduck/scripts": "workspace:*",
"@modern-js/monorepo-tools": "2.21.1",
"@modern-js/tsconfig": "2.21.1",
"@modern-js/eslint-config": "2.21.1",
"husky": "^8.0.0",
"lint-staged": "^11.2.6",
"webpack": "^5.54.0"
}
}