-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "mono",
"type": "module",
"workspaces": [
"packages/*"
],
"private": true,
"version": "1.0.0",
"description": "探索开箱即用的 monorepo 方案",
"scripts": {
"test": "npm run test -ws",
"prepare": "husky install",
"format": "prettier --write \"**/*.{js,css,md}\"",
"format:check": "prettier --check \"**/*.{js,css,md}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"version": "changeset version",
"release": "changeset publish"
},
"keywords": [
"monorepo",
"lerna",
"yarn",
"npm",
"pnpm",
"esbuild",
"typescript",
"eslint",
"prettier"
],
"author": "weiran<[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^8.51.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"nx": "17.0.0",
"nx-cloud": "latest",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}