This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "predicate-builder-service",
"version": "0.1.0",
"description": "predicate-builder-service",
"main": "src/index.ts",
"scripts": {
"start:dev": "env $(cat .env.template) nodemon",
"build": "tsc",
"start": "npm run build && node build/index.js",
"fix": "yarn fix:prettier && yarn fix:eslint",
"fix:eslint": "eslint --fix \"**/*.ts\"",
"fix:prettier": "prettier --write \"**/*.ts\"",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"**/*.ts\"",
"lint:prettier": "prettier --check \"**/*.ts\"",
"test": "jest --config=jest.config.ts",
"test:watch": "jest --config=jest.config.ts --watch",
"cleanup": "rm -rf build template jest.config.js jest.config.js.map node_modules"
},
"keywords": [],
"author": "JoNel",
"license": "ISC",
"dependencies": {
"@types/async": "^3.2.5",
"@types/redis": "^2.8.28",
"async": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"kafka-node": "^5.0.0",
"redis": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "4",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"redis-mock": "^0.56.3",
"replace": "1.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}