-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "express-toolkit",
"private": true,
"description": "A toolkit to handle Express.js requests easier",
"author": "Junmin Ahn",
"license": "MIT",
"scripts": {
"format": "git ls-files '*.js' '*.ts' | xargs prettier --write",
"lint": "lerna run lint",
"bootstrap": "lerna bootstrap",
"llink": "lerna link",
"clean": "lerna clean",
"test": "lerna run test",
"release": "lerna version --exact --no-changelog --no-push --no-git-tag-version && lerna publish from-package --dist-tag next"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"lerna": "^5.5.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"yargs": "^17.5.1"
}
}