-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.9 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
{
"name": "backframe.js",
"private": true,
"repository": "https://github.com/backframe/backframe.js.git",
"author": "Victor Ndaba <mwangindaba@gmail.com>",
"license": "MIT",
"workspaces": [
"docs",
"tests/*",
"packages/*",
"examples/*",
"packages/plugins/*",
"packages/adapters/*"
],
"keywords": [
"nodejs",
"backframe",
"backend framework",
"backend",
"node backend",
"node framework"
],
"scripts": {
"build": "pnpm turbo build",
"prepare": "pnpm husky install",
"ci:publish": "pnpm publish -r",
"ci:version": "pnpm changeset version",
"run:tests": "pnpm turbo run:tests"
},
"devDependencies": {
"@backframe/auth": "workspace:*",
"@backframe/utils": "workspace:*",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@faker-js/faker": "^7.6.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.17",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"rimraf": "^4.0.4",
"rome": "^11.0.0",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.1",
"turbo": "^1.10.14",
"typescript": "^5.2.2",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"engines": {
"node": ">=16.16",
"pnpm": ">=7.3.0"
},
"lint-staged": {
"*.{md,yml,json}": "prettier --write",
"*.{js,ts}": [
"rome check --apply-suggested"
]
},
"pnpm": {
"patchedDependencies": {
"@changesets/assemble-release-plan@5.2.2": "patches/@changesets__assemble-release-plan@5.2.2.patch"
}
},
"dependencies": {
"zod": "^3.19.1"
}
}