forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1008 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
{
"private": true,
"scripts": {
"preinstall": "node ./scripts/only-allow-pnpm.js pnpm",
"lint": "ts-node scripts/lint.ts",
"bench": "ts-node scripts/bench.ts | tee output.txt",
"precommit-all": "ts-node scripts/lint.ts --staged",
"eslint": "eslint"
},
"devDependencies": {
"@types/benchmark": "2.1.0",
"@types/node": "14.14.45",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"arg": "5.0.0",
"benchmark": "2.1.4",
"chalk": "4.1.1",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"execa": "5.0.0",
"globby": "11.0.3",
"husky": "4.3.8",
"p-map": "4.0.0",
"prettier": "2.2.1",
"staged-git-files": "1.2.0",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "ts-node scripts/lint.ts --staged"
}
}
}