-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "serverless-ide",
"private": true,
"engines": {
"vscode": "^1.26.0"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"husky": "^1.3.1",
"jest": "^29.4.1",
"lerna": "^6.4.1",
"lint-staged": "^9.0.1",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^5.0.1",
"typescript": "^4.9.4"
},
"scripts": {
"test": "jest",
"test:changed": "jest --bail --findRelatedTests",
"pre-commit": "./node_modules/.bin/lint-staged",
"build": "lerna run build",
"lint:types": "lerna run lint:types",
"lint:ts": "eslint **/*.ts",
"lint:ts:fix": "eslint **/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"npm run lint:types",
"npm run test:changed",
"git add"
]
}
}