-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.21 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.21 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "root",
"private": true,
"version": "1.0.0",
"author": {
"name": "42devs",
"email": "hello@42devs.cl",
"url": "https://42devs.cl"
},
"homepage": "https://github.com/42devs/packages_library",
"bugs": {
"url": "https://github.com/42devs/packages_library/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/42devs/packages_library.git"
},
"license": "MIT",
"contributors": [
{
"name": "Nicolas Martinez V. @TheMakunga",
"email": "nicolas@42devs.cl",
"url": "https://github.com/TheMakunga"
},
{
"name": "Hugo Morales G. @Hugazo",
"email": "hugo@42devs.cl",
"url": "https://github.com/hugazo"
}
],
"scripts": {
"bootstrap": "npx lerna bootstrap",
"build": "npx lerna run build",
"build:dev": "tsc",
"build:clean": "npx lerna run build:clean",
"bundle": "npx lerna run bundle",
"update": "npx lerna run update",
"clean": "npx lerna run clean --no-sort && npm run clean:nx-cache",
"clean:nx-cache": "npx nx reset",
"clean:bundle": "npx lerna run clean:bundle --no-sort",
"clean:dependencies": "npx lerna run clean:dependencies --no-sort",
"commitMessage": "cz",
"prepare": "husky install",
"lint": "npx lerna run lint --no-sort",
"lint:fix": "npx lerna run lint:fix --no-sort",
"test": "npx lerna run test --no-sort",
"test:cov": "npx lerna run test:cov --no-sort",
"versionup": "npx lerna version --conventional-commit --no-git-tag-version",
"versionup:patch": "npx lerna version patch --conventional-commit --no-git-tag-version",
"versionup:minor": "npx lerna version minor --conventional-commit --no-git-tag-version",
"versionup:mayor": "npx lerna version mayor --conventional-commit --no-git-tag-version",
"commit-version": "git add . && git commit -m \"chore(release): publish `node -p 'require('./lerna.json').version'`\"",
"postversionup": "pnpm run commit-version",
"postversionup:patch": "pnpm run commit-version",
"postversionup:minor": "pnpm run commit-version",
"postversionup:mayor": "pnpm run commit-version",
"release": "npx lerna publish from-package",
"release:canary": "npx lerna publish --canary --preid next --dist-tag next --force-publish='*' --no-push --no-git-tag-version --yes"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lerna": "^7.4.2",
"lint-staged": "^15.1.0",
"nx": "^17.1.3",
"nx-cloud": "^16.5.2",
"prettier": "^3.1.0",
"prettier-eslint-cli": "^8.0.1",
"rimraf": "^5.0.5",
"rollup": "^4.9.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"semantic-release": "^22.0.8",
"semantic-release-cli": "^5.4.4",
"semantic-release-lerna": "^2.0.0",
"semantic-release-monorepo": "^7.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": "^20.10.0",
"pnpm": "^8.10.0"
},
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"module": "^1.2.5",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0"
}
}