-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (76 loc) · 2.06 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
{
"name": "@ockonor/nest-drizzle",
"version": "1.1.0",
"description": "Integration of Drizzle ORM for Nestjs Framework",
"author": "Julien Lenne <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/canduma/nest-drizzle.git"
},
"scripts": {
"start:dev": "tsc-watch -p tsconfig.build.json --onSuccess \"node dist/main.js\"",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"generate": "drizzle-kit generate:pg"
},
"keywords": [
"nestjs",
"drizzle",
"neon",
"orm",
"sqlite3",
"postgres-js",
"mysql2",
"planetscale",
"supabase"
],
"homepage": "https://github.com/canduma/nest-drizzle#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/better-sqlite3": "^7.6.4",
"@types/express": "4.17.17",
"@types/node": "20.5.7",
"@types/supertest": "2.0.12",
"drizzle-kit": "^0.19.13",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"tsc-watch": "6.0.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "29.6.4",
"prettier": "^3.0.3",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.2.2",
"tsc": "^2.0.4"
},
"dependencies": {
"better-sqlite3": "^8.5.2",
"drizzle-orm": "^0.28.5",
"mysql2": "^3.6.0",
"postgres": "^3.3.5"
}
}