-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.91 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
{
"name": "monorepo-boilerplate-typescript",
"private": true,
"workspaces": [
"packages/*"
],
"author": "Jay Chen <gcobs135102@gmail.com>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean && lerna clean",
"build:clean": "lerna run build:clean --stream --parallel",
"build": "lerna run build --stream --sort",
"format": "prettier './**/*.{json,md}' --write",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test:clean": "lerna run test:clean --stream --parallel",
"test": "lerna run test --stream --sort",
"test:coverage": "lerna run test --stream --sort -- --coverage",
"commit": "git-cz",
"postinstall": "husky install",
"version": "lerna version",
"postversion": "lerna run build --stream --sort -- --release",
"release": "lerna publish from-package"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^12.3.2",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"zlib": "^1.0.5"
}
}