forked from shapeshift/lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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": "lib",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/**/*"
],
"version": "independent"
},
"scripts": {
"build": "lerna run build --include-dependencies",
"dev": "lerna run dev --stream --parallel",
"lint": "eslint --cache .",
"test": "jest",
"test:dev": "jest --watch",
"type-check": "lerna run type-check",
"release": "lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo",
"publish:lerna": "lerna publish from-package --no-private --yes",
"version:patch": "lerna version patch --yes --no-git-tag-version --no-push",
"version:minor": "lerna version minor --yes --no-git-tag-version --no-push",
"version:major": "lerna version major --yes --no-git-tag-version --no-push"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"jest": "^27.1.0",
"jest-mock-extended": "^1.0.9",
"lerna": "^4.0.0",
"prettier": "1.19.1",
"semantic-release": "^17.4.7",
"semantic-release-monorepo": "^7.0.5",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.2.4"
},
"dependencies": {}
}