-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tracetrail",
"version": "4.0.1",
"description": "Simple request logger for Express or Express Like apps. Effortlessly record and identify input/output payloads.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"ui",
"install-react-ui"
],
"keywords": [
"express",
"http",
"logger",
"middleware",
"express",
"body",
"request",
"response",
"logging"
],
"scripts": {
"release": "release-it",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"postinstall": "node install-react-ui",
"start": "npm run build && node dist/index.js",
"example:js": "npm run build && node examples/javascript-example.js",
"example:ts": "nodemon --watch src --exec \"ts-node -r tsconfig-paths/register examples/typescript-example.ts\"",
"lint": "eslint --fix . --ext .ts && cd react-ui && npm run lint",
"build-ui": "cd react-ui && npm run build",
"build": "rimraf ./dist && tsc -d && npm run build-ui",
"dev": "nodemon --watch src --exec ts-node -r tsconfig-paths/register -- ./dev/index.ts",
"test": "echo \"Error: no test specified. Will be added in later iterations.\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okayshankha/tracetrail.git"
},
"author": "Shankhadeep Das",
"license": "GNU AGPLv3",
"bugs": {
"url": "https://github.com/okayshankha/tracetrail/issues"
},
"homepage": "https://github.com/okayshankha/tracetrail#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.13",
"@types/on-finished": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"dotenv": "^16.3.1",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"release-it": "^16.1.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"agenda": "^5.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongodb-memory-server": "^9.3.0",
"mongoose": "^6.11.0",
"on-finished": "^2.4.1",
"rimraf": "^5.0.0",
"winston": "^3.8.2"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}"
}
}
}