-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.16 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.16 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "easy-fixer",
"version": "1.0.0",
"private": true,
"description": "This is a monorepo that contains all the apps related to Easy Fixer, which is a platform to connect clients with in-your-location service providers such as handymen.",
"homepage": "https://github.com/EasyFixerApp/easy-fixer#readme",
"bugs": {
"url": "https://github.com/EasyFixerApp/easy-fixer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EasyFixerApp/easy-fixer.git"
},
"engines": {
"node": "22.15.0"
},
"author": "Easy Fixer",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev -w api\" \"npm run dev -w web\"",
"build:setup": "npm run build -w easy-fixer-shared && npm run db:generate -w api",
"build": "npm run build:setup && concurrently \"npm run build -w api\" \"npm run build -w web\"",
"start": "concurrently \"npm run start -w api\" \"npm run start -w web\"",
"// // 1": "",
"check:staged": "npx lint-staged && npm run check:type -w api",
"lint:check": "concurrently \"npm run check:type -w api\" \"npm run lint -w api\" \"npm run lint -w web\" \"npm run lint -w easy-fixer-shared\" \"npm run check:type -w easy-fixer-shared\"",
"lint:fix": "concurrently \"npm run lint:fix -w api\" \"npm run lint:fix -w web\" \"npm run lint:fix -w easy-fixer-shared\"",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "npm run test -w api && npm run test -w web",
"test:coverage": "cd apps/api && npm run test:coverage && cd ../web && npm run test:coverage",
"// // 2": "",
"docker:setup": "npm run db:docker:setup -w api",
"postinstall": "npm run build -w easy-fixer-shared",
"prepare": "husky && npm run setup:env && npm run db:setup -w api && npm run setup:nav",
"// // 2.1": "",
"clean:all": "concurrently \"npx rimraf node_modules\" \"npm run clean -w api\" \"npm run clean -w web\"",
"clean:all:deep": "npx rimraf package-lock.json && npm run clean:all",
"setup:nav": "tsx scripts/setup-nav.ts",
"setup:env": "tsx scripts/setup-env.js"
},
"imports": {
"#easy-fixer/*": "./packages/*/src/index.js"
},
"exports": {
"./*": "./packages/*/src/index.js",
"./package.json": "./package.json"
},
"main": "./packages/main/src/index.js",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/node": "^22.15.18",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/eslint-plugin": "^1.1.44",
"@vitest/ui": "^3.1.3",
"concurrently": "^9.1.2",
"eslint": "^9.27.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.0.0",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"lint-staged": {
"apps/api/**/*.{ts,tsx}": [
"npm run lint -w api"
],
"apps/web/**/*.{ts,tsx}": [
"npm run lint -w web"
],
"packages/shared/**/*.ts": [
"npm run lint -w easy-fixer-shared"
],
"**/*.{ts,tsx,json,yml,yaml,md}": [
"prettier --check"
]
},
"workspaces": [
"apps/*",
"packages/*"
]
}