-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
{
"name": "mou-client-action",
"version": "1.0.0",
"description": "Github action that interacts with MOU library",
"main": "src/index.ts",
"repository": "https://github.com/minddocdev/mou-client-action",
"author": "MindDoc Health GmbH <development@minddoc.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"axios": "^1.5.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack --progress",
"lint": "eslint --cache-file $(pwd)/.eslintcache $(pwd)/src/**/*.ts $(pwd)/test/**/*.ts",
"test": "jest --coverage",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"packageManager": "yarn@3.6.3"
}