forked from readmeio/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "api-monorepo",
"private": true,
"type": "module",
"scripts": {
"alex": "alex .",
"attw": "npx lerna run attw --stream",
"build": "lerna run build --stream",
"build-docs": "node bin/build-markdown.js",
"clean": "lerna clean",
"lint": "npm run lint:types && npm run lint:js && npm run prettier",
"lint:deadcode": "knip",
"lint:js": "eslint . --ext .js,.ts",
"lint:types": "npm run lint:types --if-present --workspaces",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"publish": "lerna publish",
"pretest": "npm run build",
"test": "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": ">=16"
},
"workspaces": [
"./packages/*"
],
"prettier": "@readme/eslint-config/prettier",
"devDependencies": {
"@readme/eslint-config": "^13.4.1",
"@tsconfig/node18": "^18.2.2",
"alex": "^11.0.1",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"knip": "^4.2.3",
"lerna": "^8.0.1",
"prettier": "^3.1.1",
"tsup": "^8.0.1"
}
}