-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "nestjs-plugins",
"private": true,
"repository": "git@github.com:g59/nestjs-plugins.git",
"author": "g59",
"engines": {
"npm": ">=10"
},
"version": "10.0.0",
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"lint": "npm run lint --workspaces",
"rebuild:test-native": "npm rebuild sqlite3 --ignore-scripts=false",
"test": "npm run rebuild:test-native && dotenv -e example/.env.test jest"
},
"devDependencies": {
"@as-integrations/fastify": "^3.1.0",
"@jest/globals": "^30.3.0",
"@nestjs/testing": "^11.1.19",
"dotenv-cli": "^11.0.0",
"jest-mock-extended": "^4.0.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"packages/*/src/*.ts"
],
"testEnvironment": "node",
"moduleNameMapper": {
"^nestjs-firebase$": "<rootDir>/packages/nestjs-firebase/src",
"^nestjs-graphql-relay$": "<rootDir>/packages/nestjs-graphql-relay/src",
"^nestjs-slack-webhook$": "<rootDir>/packages/nestjs-slack-webhook/src",
"^nestjs-zendesk$": "<rootDir>/packages/nestjs-zendesk/src"
}
},
"workspaces": [
"packages/*",
"example"
]
}