-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.95 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
70
71
72
73
74
75
{
"name": "detector-contract",
"version": "1.0.0",
"main": "./build/index.js",
"bin": {
"detector": "./build/index.js"
},
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf ./build",
"start": "npx ts-node ./src/index.ts",
"dev": "nodemon src -e ts,json,yaml --exec 'yarn start'",
"test": "jest --watchAll",
"test-coverage": "jest --watchAll --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prettier": "prettier --write .",
"build": "yarn clean && tsc -p .",
"execute": "yarn build && node ./build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.4",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.1.1",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"javascript-fuzzylogic": "^1.3.0",
"node-fetch": "2",
"swagger-ui-express": "^4.6.3",
"uuidv4": "^6.2.13",
"yaml": "^2.3.1"
},
"engines": {
"node": ">=14.16"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/public",
"!src/index.tsx",
"!src/reportWebVitals.ts",
"!src/serviceWorker.ts",
"!src/config/index.ts"
],
"coverageReporters": [
"text",
"lcov"
],
"resetMocks": false
}
}