-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "@surgio/packages-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"test": "turbo run test",
"build": "turbo run build",
"lint": "turbo run lint",
"prepublishOnly": "turbo run build",
"lerna": "lerna",
"prepare": "husky install",
"release": "lerna version && lerna publish from-git",
"release:beta": "lerna version --preid beta && lerna publish from-git --dist-tag beta"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-angular": "^17.8.1",
"@types/jest": "29.5.1",
"@types/node": "^18.19.26",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^4.1.0",
"husky": "^8.0.3",
"jest": "29.5.0",
"lerna": "^6.6.2",
"lint-staged": "^13.3.0",
"nock": "^13.5.4",
"npm-debug-log-cleaner": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"surgio": "^3.6.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"turbo": "^1.13.0",
"type-fest": "^3.13.1",
"typescript": "^5.4.3"
},
"repository": "https://github.com/surgioproject/packages",
"author": "Roy Li <[email protected]>",
"bugs": {
"url": "https://github.com/surgioproject/surgio/issues"
},
"homepage": "https://surgio.js.org",
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "npm-debug-log-cleaner && lint-staged"
}
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}