-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "api-tests",
"version": "1.0.0",
"license": "MIT",
"author": "Andrii Nastenko",
"description": "api-tests",
"scripts": {
"install-git-hooks": "husky install",
"lint:check": "eslint . --ext .js,.ts,.json",
"lint:fix": "eslint . --ext .js,.ts,.json --fix",
"packages:check-updates": "npm-check-updates",
"packages:update": "ncu -u && npm i",
"test": "jest -c ./jest.config.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@faker-js/faker": "^8.0.1",
"ajv": "^8.12.0",
"axios": "^1.4.0",
"csv-string": "^4.1.1",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"jest-expect-message": "^1.1.3",
"jest-extended": "^3.2.4",
"jest-junit": "^16.0.0",
"lodash": "^4.17.21",
"mysql2": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"type-fest": "^3.11.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-check-updates": "^16.10.12",
"prettier": "^2.8.8"
}
}