-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.97 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
{
"name": "shadow-logger",
"version": "0.9.15",
"description": "Debugger dashboard for express apps",
"bin": "./lib/cli.js",
"main": "./lib/main.js",
"type": "module",
"scripts": {
"test": "mocha",
"server": "node ./lib/cli.js up prod",
"server:dev": "node ./lib/cli.js up dev",
"watch": "tsc --watch -p tsconfig.jsonc",
"start": "cd ./dashboard && react-scripts start",
"start:localhost": "cd ./dashboard && REACT_APP_API_URL=http://localhost/logs react-scripts start",
"build:dev": "cd ./dashboard && REACT_APP_API_URL=http://localhost:8081/logs PUBLIC_URL=/debug react-scripts build",
"build": "cd ./dashboard && REACT_APP_API_URL='/debug/logs' PUBLIC_URL='/debug' react-scripts build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beplatform/shadow-logger.git"
},
"keywords": [],
"author": "Anuar Kilgore, Juan Carlos Campbell",
"license": "MIT",
"bugs": {
"url": "https://github.com/beplatform/shadow-logger/issues"
},
"homepage": "https://github.com/beplatform/shadow-logger#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.142.0",
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
"express": "^4.17.2",
"moment": "^2.29.1",
"pino-abstract-transport": "^1.0.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.127.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/express": "^4.17.13",
"axios": "^0.25.0",
"mocha": "^9.2.0",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"ra-data-json-server": "^3.19.7",
"react": "^17.0.2",
"react-admin": "^3.19.7",
"react-admin-json-view": "^1.2.1",
"react-dom": "^17.0.2",
"react-scripts": "^5",
"web-vitals": "^2.1.0"
}
}