forked from hugo082/drizzle-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.52 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "integration-tests",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"test:types": "tsc",
"test": "pnpm test:ava && pnpm test:esm && pnpm test:rqb",
"test:ava": "NODE_OPTIONS='--loader=tsx --no-warnings' ava tests --timeout=60s --serial",
"test:rqb": "vitest run --no-threads",
"test:esm": "node tests/imports.test.mjs && node tests/imports.test.cjs"
},
"ava": {
"files": [
"tests/**/*.test.{ts,cts,mts,js,cjs,mjs}",
"!tests/imports.test.mjs",
"!tests/imports.test.cjs",
"!tests/awsdatapi.alltypes.test.ts",
"!tests/awsdatapi.test.ts",
"!tests/planetscale-serverless/**/*.ts",
"!tests/bun/**/*",
"!tests/vercel-pg.test.ts",
"!tests/relational/**/*",
"!tests/libsql-batch.test.ts",
"!tests/xata-http.test.ts",
"!tests/d1-batch.test.ts",
"!tests/sqlite-proxy-batch.test.ts",
"!tests/neon-http-batch.test.ts",
"!tests/neon-http.test.ts",
"!tests/replicas/**/*",
"!tests/imports/**/*"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx"
]
},
"keywords": [],
"author": "Drizzle Team",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@neondatabase/serverless": "0.9.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/axios": "^0.14.0",
"@types/better-sqlite3": "^7.6.4",
"@types/dockerode": "^3.3.18",
"@types/express": "^4.17.16",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.1",
"@types/sql.js": "^1.4.4",
"@types/uuid": "^9.0.1",
"@vitest/ui": "^0.31.4",
"ava": "^5.3.0",
"axios": "^1.4.0",
"tsx": "^3.12.7",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"zx": "^7.2.2"
},
"dependencies": {
"@aws-sdk/client-rds-data": "^3.345.0",
"@aws-sdk/credential-providers": "^3.345.0",
"@electric-sql/pglite": "^0.1.1",
"@libsql/client": "^0.5.6",
"@miniflare/d1": "^2.14.0",
"@miniflare/shared": "^2.14.0",
"@planetscale/database": "^1.16.0",
"@typescript/analyze-trace": "^0.10.0",
"@vercel/postgres": "^0.3.0",
"@xata.io/client": "^0.29.3",
"better-sqlite3": "^8.4.0",
"dockerode": "^3.3.4",
"dotenv": "^16.1.4",
"drizzle-typebox": "workspace:../drizzle-typebox/dist",
"drizzle-valibot": "workspace:../drizzle-valibot/dist",
"drizzle-zod": "workspace:../drizzle-zod/dist",
"express": "^4.18.2",
"get-port": "^7.0.0",
"mysql2": "^3.3.3",
"pg": "^8.11.0",
"postgres": "^3.3.5",
"source-map-support": "^0.5.21",
"sql.js": "^1.8.0",
"sqlite3": "^5.1.4",
"uuid": "^9.0.0",
"uvu": "^0.5.6",
"vitest": "^0.31.4",
"zod": "^3.20.2"
}
}