-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 959 Bytes
/
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
{
"name": "mono-repo-example",
"description": "The Architecture of Monorepo System based on Lerna",
"author": "Wisdom <pdsu.wwz@foxmail.com>",
"homepage": "https://github.com/pdsuwwz/mono-repo-example#readme",
"private": true,
"license": "MIT",
"main": "packages/app/lib/main.js",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test --stream",
"lint": "eslint --fix packages",
"update:version": "lerna version --no-push"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"lerna": "^6.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/mono-repo-example.git"
},
"bugs": {
"url": "https://github.com/pdsuwwz/mono-repo-example/issues"
}
}