This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@libero/audit",
"version": "0.1.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts src/",
"prettier": "prettier --write 'src/**/*ts'",
"start:dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/main.ts | pino-pretty",
"test": "jest ./src/",
"test:integration": "jest ./tests/"
},
"repository": {
"type": "git",
"url": "https://github.com/libero/audit"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@libero/event-bus": "^0.2.0",
"@libero/event-types": "^0.1.0",
"express": "^4.17.1",
"funfix": "^7.0.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.4",
"node-fetch": "^2.6.0",
"pg": "^7.12.1",
"pino": "^5.13.2",
"typesafe-uuid": "^1.0.2"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.3.3",
"@types/node-fetch": "^2.5.0",
"@types/pino": "^5.8.10",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^26.6.3",
"nodemon": "^1.19.4",
"pino-pretty": "^3.2.1",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.15.0"
}
}