-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "morjs-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"install-deps": "node ./scripts/install.js",
"build": "node ./scripts/build.js",
"dev": "node ./scripts/dev.js",
"clean": "node ./scripts/clean.js",
"lint": "eslint . --fix",
"test": "lerna run test",
"format": "prettier --write .",
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"release": "lerna publish",
"docs:deps": "cd website && pnpm install",
"docs:start": "cd website && pnpm start",
"docs:build": "cd website && pnpm build",
"docs:format": "cd website && prettier --write ./**/*.{js,tsx,css,md}"
},
"engines": {
"node": ">=12.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@jest/types": "^27.4.2",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"blessed-contrib": "^4.11.0",
"chalk": "^4.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.5.0",
"eslint-define-config": "^1.2.0",
"eslint-plugin-node": "^11.1.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"blessed": "^0.1.81",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "~4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}