-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1012 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1012 Bytes
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
{
"name": "nestingjs",
"version": "1.0.0",
"description": "Extension pack for Nest",
"main": "index.js",
"private": true,
"type": "module",
"author": "Alexey Vasyukov (@notmedia)",
"license": "MPL-2.0",
"workspaces": [
"packages/*",
"e2e"
],
"packageManager": "npm@10.9.1",
"scripts": {
"prepare": "husky",
"build": "turbo build",
"ncu": "ncu -w --root",
"lint": "turbo lint",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:e2e": "vitest run --project e2e",
"release": "npm run lint && npm run test && npm run build && npx changeset && npx changeset version",
"publish": "npx changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@vitest/coverage-v8": "4.0.9",
"husky": "9.1.7",
"npm-check-updates": "19.1.2",
"turbo": "2.6.1",
"vitest": "4.0.9"
}
}