-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
executable file
·78 lines (78 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"workspaces": [
"packages/*"
],
"private": true,
"description": "Code generators and UIDL definition library",
"scripts": {
"lint": "tslint -p . -c tslint.json",
"clean": "lerna run clean --parallel",
"link": "lerna link",
"build": "yarn run clean && yarn run link && lerna run build ",
"dev": "yarn run link && lerna run build && node scripts/watcher.mjs",
"test": "jest --silent=false",
"test:perf": "jest __tests__/performance",
"test:clearcache": "jest --clearCache",
"test:coverage": "yarn run test -- --coverage --no-cache",
"upload:coverage": "codecov",
"commitizen": "git-cz",
"add-contributor": "all-contributors add",
"changelog": "lerna-changelog",
"version": "lerna version",
"many:check": "manypkg check",
"many:fix": "manypkg fix",
"publish": "lerna publish from-package --no-verify-access",
"local:adduser": "npm adduser --registry http://localhost:4873",
"local:publish": "lerna exec --bail=false -- npm publish -f --registry http://localhost:4873",
"local:unpublish": "lerna exec --bail=false -- npm unpublish -f --registry http://localhost:4873"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm run many:check"
}
},
"engines": {
"node": ">=20.x"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/teleporthq/teleport-code-generators.git"
},
"author": "teleportHQ",
"license": "MIT",
"homepage": "https://teleporthq.io/",
"dependencies": {
"@manypkg/cli": "^0.20.0",
"@types/babel-types": "^7.0.7",
"@types/jest": "^25.1.1",
"@types/node": "18",
"@types/prettier": "^2.1.6",
"@types/rimraf": "^2.0.3",
"all-contributors-cli": "^6.13.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"codecov": "^3.8.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^3.0.4",
"jest": "^26.6.3",
"lerna": "^5.3.0",
"lerna-changelog": "^2.2.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^26.5.6",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"parse5": "^7.1.2"
}
}