forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
55
56
57
58
59
{
"name": "@prisma/engine-core",
"version": "2.11.0-dev.20",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Tim Suchanek <[email protected]>",
"devDependencies": {
"@types/jest": "26.0.19",
"@types/node": "12.19.9",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"abort-controller": "3.0.0",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.2.0",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"strip-ansi": "6.0.0",
"ts-jest": "26.4.4",
"typescript": "4.1.2"
},
"scripts": {
"build": "tsc -d",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"lint": "eslint --cache --fix --ext .ts .",
"lint-ci": "eslint --ext .ts .",
"test": "jest",
"precommit": "lint-staged"
},
"dependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engines": "2.14.0-22.85cf7930a5fc63cd99fa483153fd33cb35d49cfa",
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
"chalk": "^4.0.0",
"execa": "^5.0.0",
"get-stream": "^6.0.0",
"indent-string": "^4.0.0",
"new-github-issue-url": "^0.2.1",
"p-retry": "^4.2.0",
"terminal-link": "^2.1.1",
"undici": "2.2.1"
},
"files": [
"!**/__tests__",
"dist"
],
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
]
}
}