forked from readmeio/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.44 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.44 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
{
"name": "api-monorepo",
"private": true,
"scripts": {
"alex": "alex .",
"build": "npx lerna run build --stream",
"build-docs": "node bin/build-markdown.js",
"clean": "npx lerna clean",
"lint": "eslint . --ext .js,.ts",
"prepare": "husky install",
"prettier": "prettier --list-different \"./**/**.{js,ts,md}\"",
"prettier:write": "prettier --list-different --write \"./**/**.{js,ts,md}\"",
"publish": "npx lerna publish",
"pretest": "npm run build",
"test": "npx lerna run test --stream",
"test:smoke": "npm run test:smoke --workspace=packages/api",
"version": "npx conventional-changelog-cli --pkg lerna.json -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/api.git"
},
"engines": {
"node": ">=14"
},
"workspaces": [
"./packages/*"
],
"prettier": "@readme/eslint-config/prettier",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@readme/eslint-config": "^10.2.0",
"alex": "^11.0.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"prettier": "^2.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always",
"Infinity"
],
"footer-max-line-length": [
0,
"always",
"Infinity"
]
}
}
}