This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.97 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
{
"name": "lerna-rollup-github-packages",
"version": "0.0.1",
"homepage": "https://github.com/SoYoung210/lerna-rollup-github-package-example",
"bugs": {
"url": "https://github.com/SoYoung210/lerna-rollup-github-package-example/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SoYoung210/lerna-rollup-github-package-example.git"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/preset-typescript": "7.10.4",
"@babel/runtime": "7.11.1",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@types/jest": "26.0.8",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"cross-env": "7.0.2",
"cz-lerna-changelog": "2.0.3",
"eslint": "7.6.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-simple-import-sort": "5.0.3",
"git-cz": "^4.7.0",
"husky": "^4.2.5",
"jest": "26.0.1",
"lerna": "3.22.1",
"read-pkg-up": "7.0.1",
"rollup": "2.23.0",
"rollup-plugin-peer-deps-external": "2.2.3",
"semantic-release": "^17.1.1",
"semantic-release-monorepo": "^7.0.2",
"ttypescript": "^1.5.10",
"typescript": "3.9.7",
"typescript-transform-paths": "^2.0.0"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint ./packages --ext ts --ext tsx",
"build": "lerna run build",
"publish": "lerna publish from-package --y --no-verify-access",
"semantic-release": "lerna exec --concurrency 1 -- semantic-release -e semantic-release-monorepo --tag-format='${LERNA_PACKAGE_NAME}-v\\${version}'"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}