-
Notifications
You must be signed in to change notification settings - Fork 429
/
package.json
36 lines (36 loc) · 925 Bytes
/
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
{
"name": "countries-workspace",
"version": "3.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"bump": "npx npm-check-updates --root --workspaces -u",
"ci": "turbo run lint build test",
"format": "prettier --write \"packages/**/*.ts\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "husky",
"test": "turbo run test",
"version": "cd ./packages/scripts && npm run version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"eslint": "8.57.0",
"eslint-config-custom": "*",
"husky": "9.1.4",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"turbo": "2.0.10"
},
"devEngines": {
"node": ">=18"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
},
"packageManager": "[email protected]"
}