-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "@easy-cache/core",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "https://github.com/YashKumarVerma/easy-cache",
"author": "Yash Kumar Verma <[email protected]>",
"license": "MIT",
"keywords": [
"cache",
"minimal",
"redis",
"plugins",
"easy-cache"
],
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"build": "tsc",
"start:dev": "nodemon",
"start:prod": "node ./dist/src/server.js",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha -r ts-node/register --exit --timeout 10000 ./test/**/*.ts src/services/**/*.spec.ts"
},
"dependencies": {
"redis": "^3.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/redis": "^2.8.31",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^9.0.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^10.1.0",
"typescript": "^4.2.3"
}
}