-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "regression",
"version": "3.4.5",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run test:generate",
"test:generate": "tsx ../../scripts/test-generate.ts ./test",
"test": "pnpm test:generate && tsc && vitest run",
"test:sqlite": "TEST_DB_PROVIDER=sqlite vitest run",
"test:postgresql": "TEST_DB_PROVIDER=postgresql vitest run",
"test:mysql": "TEST_DB_PROVIDER=mysql vitest run"
},
"dependencies": {
"@zenstackhq/testtools": "workspace:*",
"decimal.js": "catalog:",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/node": "catalog:",
"@zenstackhq/cli": "workspace:*",
"@zenstackhq/language": "workspace:*",
"@zenstackhq/orm": "workspace:*",
"@zenstackhq/plugin-policy": "workspace:*",
"@zenstackhq/schema": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*",
"@zenstackhq/vitest-config": "workspace:*"
}
}