-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 949 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
40
{
"name": "prisma-cleaner",
"version": "1.0.1",
"description": "Clean up database with Prisma for testing callback",
"main": "index.js",
"type": "module",
"engines": {
"node": "16"
},
"scripts": {
"pretest": "pg_ctl -D db/pgdata start && prisma migrate dev",
"test": "mocha",
"posttest": "pg_ctl -D db/pgdata stop"
},
"prettier": "prettier-config-standard",
"repository": {
"type": "git",
"url": "git+https://github.com/cc-kawakami/prisma-cleaner.git"
},
"keywords": [
"prisma",
"db",
"jest",
"mocha"
],
"author": "Moeki Kawakami",
"license": "MIT",
"bugs": {
"url": "https://github.com/cc-kawakami/prisma-cleaner/issues"
},
"homepage": "https://github.com/cc-kawakami/prisma-cleaner#readme",
"dependencies": {
"@prisma/client": "^4.5.0"
},
"devDependencies": {
"mocha": "^10.1.0",
"prettier-config-standard": "^5.0.0",
"prisma": "^4.5.0"
}
}