forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.89 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"private": true,
"name": "dev-env",
"triggerEmptyDevReleaseByIncrementingThisNumber": 0,
"license": "Apache-2.0",
"maintainers": [
"Joël Galeran <[email protected]>",
"Pierre-Antoine Mills <[email protected]>",
"Alexey Orlenko <[email protected]>"
],
"engines": {
"node": ">=12.6",
"pnpm": ">=6.14.1"
},
"scripts": {
"setup": "ts-node scripts/setup.ts",
"build": "ts-node scripts/setup.ts --build",
"watch": "pnpm -r run dev && WATCH=true pnpm -r run dev --parallel --stream",
"publish-all-dryrun": "ts-node scripts/ci/publish.ts --publish --dry-run",
"publish-all": "ts-node scripts/ci/publish.ts --publish",
"bump-engines": "ts-node scripts/bump-engines.ts",
"test": "ts-node scripts/ci/publish.ts --test",
"all": "ts-node scripts/ci/all.ts",
"status": "ts-node scripts/ci/publish.ts --status",
"pull": "ts-node scripts/ci/publish.ts --pull",
"preinstall": "node ./scripts/only-allow-pnpm.js pnpm",
"precommit": "lint-staged",
"eslint": "eslint",
"lint": "eslint --fix --ext .ts .",
"format": "prettier --write .",
"bench": "ts-node scripts/bench.ts | tee output.txt",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@sindresorhus/slugify": "1.1.2",
"@slack/webhook": "6.0.0",
"@types/benchmark": "2.1.1",
"@types/glob": "7.2.0",
"@types/graphviz": "0.0.34",
"@types/node": "14.18.16",
"@types/redis": "2.8.32",
"@types/resolve": "1.20.2",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"arg": "5.0.1",
"batching-toposort": "1.2.0",
"buffer": "6.0.3",
"chalk": "4.1.2",
"chokidar": "3.5.2",
"esbuild": "0.13.14",
"esbuild-register": "3.3.1",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eventemitter3": "4.0.7",
"execa": "5.1.1",
"glob": "8.0.1",
"globby": "11.0.4",
"graphviz-mit": "0.0.9",
"husky": "7.0.4",
"is-ci": "3.0.1",
"jest-junit": "13.2.0",
"lint-staged": "12.3.4",
"node-fetch": "2.6.7",
"p-map": "4.0.0",
"p-reduce": "2.1.0",
"p-retry": "4.6.1",
"path-browserify": "1.0.1",
"prettier": "2.5.1",
"redis": "3.1.2",
"redis-lock": "0.1.4",
"regenerator-runtime": "0.13.9",
"resolve": "1.21.0",
"safe-buffer": "5.2.1",
"semver": "7.3.5",
"spdx-exceptions": "2.3.0",
"spdx-license-ids": "3.0.11",
"staged-git-files": "1.2.0",
"ts-node": "10.4.0",
"ts-toolbelt": "9.6.0",
"tty-browserify": "0.0.1",
"typescript": "4.5.4",
"util": "0.12.4"
},
"lint-staged": {
"*.{md,yml,json}": "prettier --write",
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}