This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
{
"name": "@libero/continuum-adaptor",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest ./src",
"build": "tsc",
"lint": "eslint --ext .js,.ts,.tsx .",
"prettier": "prettier --write '{src,tests}/**/*ts'",
"start:dev": "CONFIG_PATH=config/config.json nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/main.ts | pino-pretty",
"test:integration": "jest ./tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/libero/continuum-adaptor"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"funfix": "^7.0.1",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"newrelic": "7.5.0",
"node-fetch": "^2.6.1",
"pg": "7.17.1",
"pino": "^5.13.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/http-errors": "^1.6.3",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.3.5",
"@types/knex": "^0.16.1",
"@types/node-fetch": "^2.5.3",
"@types/pino": "^5.8.13",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"axios": "^0.21.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"flush-promises": "^1.0.2",
"husky": "^3.0.9",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"pino-pretty": "^3.3.0",
"prettier": "^1.18.2",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "^3.7.2"
},
"engines": {
"node": ">=12.15.0"
}
}