-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
43 lines (43 loc) · 1.31 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
{
"private": true,
"author": {
"name": "Paweł Kosiec",
"email": "[email protected]",
"url": "https://kosiec.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/pkosiec/mongo-seeding.git"
},
"bugs": {
"url": "https://github.com/pkosiec/mongo-seeding/issues"
},
"scripts": {
"setup-hooks": "git config core.hooksPath ./scripts/git-hooks",
"bootstrap": "lerna bootstrap -- --force",
"changelog": "lerna-changelog",
"build-all": "lerna run build",
"publish": "bash ./scripts/publish-npm-and-docker.sh",
"clean": "lerna clean",
"update-deps": "bash ./scripts/update-dependencies.sh",
"lint": "npm run eslint:check && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint:check": "eslint . --ext .json,.js,.jsx,.ts,.tsx",
"prettier:check": "prettier --check .",
"eslint:fix": "eslint . --fix --ext .json,.js,.jsx,.ts,.tsx",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@lerna/legacy-package-management": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"lerna": "^8.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.0.3",
"typescript": "^5.0.4"
},
"volta": {
"node": "20.18.0"
}
}