-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 991 Bytes
/
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
{
"name": "unitofwork",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run --dir test/unit",
"test:watch": "vitest --dir test/unit",
"test:integration": "vitest run --dir test/integration",
"test:integration:watch": "vitest --dir test/integration",
"test:all": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitest/coverage-v8": "^0.34.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^3.0.3",
"prisma": "^5.2.0",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"dependencies": {
"@prisma/client": "^5.2.0"
}
}