-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "beautiful-api-client",
"version": "0.1.14",
"license": "MIT",
"description": "Beautiful, type-safe REST API client for typescript",
"author": "Nick Papirniy <[email protected]>",
"repository": "https://github.com/npwork/beautiful-api-client",
"bugs": "https://github.com/npwork/beautiful-api-client/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.8.0"
},
"scripts": {
"setup": "ts-node scripts/setup.ts",
"watch": "pnpm -r run dev && WATCH=true pnpm -r run dev --parallel --stream",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"make-badges": "istanbul-badges-readme"
},
"dependencies": {
"axios": "^0.24.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"form-data": "^4.0.0",
"qs": "^6.10.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@types/express": "4.17.13",
"@types/jest": "27.0.3",
"@types/multer": "1.4.7",
"@types/qs": "6.9.7",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"body-parser": "1.19.1",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"express": "4.17.2",
"husky": "7.0.4",
"istanbul-badges-readme": "1.8.1",
"jest": "27.4.5",
"multer": "1.4.4",
"prettier": "2.5.1",
"ts-jest": "27.1.2",
"typescript": "^4.5.4"
}
}