-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "@tictactrip/axios-redis",
"version": "4.0.0",
"description": "Axios Redis cache middleware",
"author": "Tictactrip <dev@tictactrip.eu>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "1.6.8",
"flatted": "3.3.2",
"ioredis": "5.3.2",
"lodash": "4.17.21",
"lodash.get": "4.4.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/lodash.get": "^4.4.9",
"@types/node": "22.10.1",
"@types/redis": "4.0.11",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"nock": "13.5.6",
"prettier": "3.4.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build:clean": "yarn clean && yarn build",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --check '{src,__tests__}/**/*.ts'",
"prettier:fix": "prettier --write '{src,__tests__}/**/*.ts'",
"eslint": "eslint {src,__tests__}/**/*.ts",
"eslint:fix": "eslint --fix {src,__tests__}/**/*.ts",
"prepublishOnly": "yarn clean && yarn build",
"test": "docker-compose up --abort-on-container-exit"
}
}