-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1005 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
36
37
38
39
{
"name": "nodejs-prisma-unit-test",
"version": "1.0.0",
"description": "The missing demo of unit testing Prisma for nodejs.",
"main": "index.js",
"scripts": {
"test": "jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctobugDemo/nodejs-prisma-unit-test.git"
},
"keywords": [
"nodejs",
"prisma",
"unit-test"
],
"author": "Octobug",
"license": "MIT",
"bugs": {
"url": "https://github.com/OctobugDemo/nodejs-prisma-unit-test/issues"
},
"homepage": "https://github.com/OctobugDemo/nodejs-prisma-unit-test#readme",
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.7",
"prettier": "^2.7.1",
"prisma": "^4.1.0"
},
"dependencies": {
"@prisma/client": "^4.1.0"
}
}