-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "next-prisma-plugin",
"version": "0.0.0-dripip",
"main": "dist/index.js",
"license": "MIT",
"author": "William Luke <luke@prisma.io>",
"description": "Next.js plugin to enable hot reloading of the Prisma Client",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/williamluke4/next-prisma-plugin.git"
},
"bugs": {
"url": "https://github.com/williamluke4/next-prisma-plugin/issues"
},
"homepage": "https://github.com/williamluke4/next-prisma-plugin#readme",
"keywords": [
"next",
"next.js",
"plugin",
"prisma",
"reload",
"hot",
"webpack"
],
"scripts": {
"watch": "tsc -w",
"dev:test-app": "cd test-app && yarn dev",
"dev": "yarn watch & yarn dev:test-app",
"build": "rimraf ./dist && tsc",
"stable": "dripip stable",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@types/jest": "^26.0.15",
"@types/webpack": "4.41.22",
"dripip": "0.10.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"jest": "^26.6.0",
"prettier": "2.1.2",
"prettier-eslint": "11.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "4.0.3",
"webpack": "4.44.2"
},
"prettier": "@prisma-labs/prettier-config"
}