-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 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": "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": "[email protected]",
"scripts": {
"prepare": "husky",
"build": "turbo build",
"ncu": "ncu -ws --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 version"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@vitest/coverage-v8": "3.0.4",
"husky": "9.1.7",
"npm-check-updates": "17.1.14",
"turbo": "2.3.4",
"vitest": "3.0.4"
}
}