-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.31 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
{
"name": "ohip-poly-demos",
"version": "0.0.1",
"description": "OHIP AI integrations and connectors using PolyAPI.io",
"engines": {
"node": ">=14.16"
},
"scripts": {
"lint": "eslint -c .eslintrc --ext .ts ./src",
"lint-fix": "eslint -c .eslintrc --ext .ts ./src --fix ",
"postinstall": "npx tsc",
"test": "rm -rf dist & jest",
"test-coverage": "rm -rf dist & jest --coverage --collectCoverageFrom='./src/**'"
},
"author": "Luis Weir",
"license": "Universal Permissive License v 1.0",
"dependencies": {
"@types/node": "^18.11.0",
"@types/ws": "^8.5.3",
"dotenv": "^16.0.3",
"jwt-decode": "^3.1.2",
"moment": "^2.29.4",
"node-fetch": "^2.6.9",
"polyapi": "^0.11.14",
"readline": "^1.3.0",
"tslog": "^3.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-jest": "^29.7.0",
"eslint": "^8.25.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
}
}