-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 KB
/
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
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
{
"name": "durian.js",
"version": "1.0.0",
"description": "Run NestJS on Bun Blazingly Fast",
"author": "mario-huang",
"license": "MIT",
"keywords": [
"durian",
"durianjs",
"nest",
"nestjs",
"bun"
],
"scripts": {
"build": "durian build",
"pm2": "bun run build && pm2-runtime start ecosystem.config.js",
"start": "durian start",
"start:debug": "durian start:debug",
"start:dev": "durian start:dev",
"start:prod": "durian start:prod",
"compile": "durian compile",
"compile:linux-x64": "durian compile:linux-x64",
"compile:linux-arm64": "durian compile:linux-arm64",
"compile:windows-x64": "durian compile:windows-x64",
"compile:darwin-x64": "durian compile:darwin-x64",
"compile:darwin-arm64": "durian compile:darwin-arm64",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "durian test",
"test:watch": "durian test:watch",
"test:cov": "durian test:cov",
"test:debug": "durian test:debug",
"test:e2e": "durian test:e2e"
},
"dependencies": {
"durian.js": "^1.0.0"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.3.2",
"@swc/cli": "^0.3.9",
"@swc/core": "^1.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pm2-beta": "^6.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}