forked from truckermudgeon/maps
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "maps",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0-or-later",
"workspaces": [
"packages/apis/*",
"packages/apps/*",
"packages/clis/*",
"packages/libs/*"
],
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.2",
"vitest": "^2.1.8"
},
"scripts": {
"prepare": "husky install",
"lint": "npx tsc -b && npx prettier --check --ignore-unknown packages && npx eslint packages/*/*",
"test": "npm run --workspaces --if-present test -- --run",
"coverage": "npm run --workspaces --if-present test -- --run --coverage"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
}
}