-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "anotherbush",
"repository": "https://github.com/anotherbush/utils",
"author": "anotherbush",
"license": "MIT",
"contributors": [
"Tim Chen <[email protected]>"
],
"private": true,
"workspaces": [
"packages/*"
],
"publishConfig": {
"@anotherbush:registry": "https://npm.pkg.github.com"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean && lerna clean",
"build:clean": "lerna run build:clean --stream --parallel",
"build": "lerna run build --stream --sort",
"lint:ts": "eslint . --ext .ts",
"lint": "npm run lint:ts",
"test:clean": "rm -rf ./coverage",
"test:coverage": "jest --coverage -w 1",
"test": "jest -w 1",
"release": "lerna version patch && npm run build && lerna publish from-package --contents lib"
},
"devDependencies": {
"@nrwl/nx-cloud": "^16.0.5",
"@swc/core": "^1.3.62",
"@types/jest": "^29.5.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"fs-extra": "^11.1.1",
"glob": "^10.2.6",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^6.6.2",
"rollup": "^3.23.0",
"rollup-plugin-swc3": "^0.8.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}