-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
88 lines (88 loc) · 2.44 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
{
"name": "errsole",
"version": "2.12.0",
"description": "Collect, Store, and Visualize Logs with a Single Module",
"keywords": [
"log",
"logs",
"logging",
"logger"
],
"homepage": "https://github.com/errsole/errsole.js",
"bugs": {
"url": "https://github.com/errsole/errsole.js/issues"
},
"license": "MIT",
"author": "Rishi Kumar <rishi@errsole.com>",
"contributors": [
"Rishi Kumar <rishi@errsole.com>",
"Venkateswarlu Ganji <venki@errsole.com>",
"Sai Kumar <sai@errsole.com>"
],
"files": [
"docs",
"examples",
"lib",
"types"
],
"main": "lib/errsole.js",
"types": "types/errsole.d.ts",
"scripts": {
"build:web": "NODE_OPTIONS=--openssl-legacy-provider webpack --config lib/web/webpack/website.config.js",
"setup": "npm install && npm install errsole-sqlite sqlite3 --no-save && npm run build:web",
"dev": "node examples/index.js",
"test": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@hapi/h2o2": "^10.0.4",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"dompurify": "^3.1.7",
"errsole-sqlite": "^2.2.0",
"express": "^4.17.1",
"express-static-gzip": "^2.1.7",
"http-proxy-middleware": "^3.0.0",
"immutable": "^4.3.7",
"json-api-serializer": "^2.6.6",
"jsonwebtoken": "^9.0.2",
"koa-proxies": "^0.12.4",
"nodemailer": "^6.9.13",
"strip-ansi": "^6.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@jest/globals": "^29.7.0",
"@microlink/react-json-view": "^1.23.3",
"antd": "^5.22.2",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "^11.1.0",
"coveralls": "^3.1.1",
"css-loader": "^7.1.2",
"history": "^5.3.0",
"jest": "^29.7.0",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"universal-cookie": "^7.1.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}