-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.49 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
{
"name": "prisma-import-tools",
"version": "5.15.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.51.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"pinst": ">=2",
"prettier": "2.8.8",
"execa": "5.1.1",
"p-retry": "4.6.2",
"semver": "7.5.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,ejs}": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"scripts": {
"install:all": "npm run install:vscode && cd packages/prisma-import && npm install && cd ../../",
"install:vscode": "cd packages/vscode && npm install && cd ../language-server && npm install && cd ../../",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build:ls": "cd packages/language-server && npm run build && cd ../../",
"build:vs": "cd packages/vscode && npm run build && cd ../../",
"build:cli": "cd packages/prisma-import && npm run build && cd ../../",
"test:ls": "cd packages/language-server && npm run test && cd ../../",
"test:vs": "sh scripts/e2e.sh",
"test:cli": "cd packages/prisma-import && npm run test && cd ../../",
"shell:lint": "shellcheck -x scripts/*.sh"
}
}