-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 2.42 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
90
91
92
93
94
{
"name": "revis",
"version": "2.0.0",
"description": "Redis monitoring tool",
"main": "/src/pages/index.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --verbose"
},
"build": {
"appId": "com.electron.revis",
"productName": "Revis",
"copyright": "Copyright © 2021 Revis",
"mac": {
"category": "public.app-category.developer-tools"
}
},
"repository": {
"url": "git+https://github.com/Revis1/Revis.git"
},
"publish": null,
"keywords": [
"Redis",
"monitoring",
"graph",
"visualization",
"metric",
"performance",
"cache"
],
"author": "OS Labs",
"contributors": [
"Chao Yu",
"Jason Zeng",
"Liam Fontes",
"Mercedes Kalaizic"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Revis1/Revis/issues"
},
"homepage": "https://github.com/Revis1/Revis#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@types/react": "^17.0.32",
"bcryptjs": "^2.4.3",
"cookies": "^0.8.0",
"ioredis": "^4.27.10",
"jsonwebtoken": "^8.5.1",
"next": "^11.1.2",
"next-themes": "^0.0.15",
"pg": "^8.7.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.0",
"react-responsive": "^9.0.0-beta.4",
"recharts": "^2.1.4",
"sass": "^1.42.1",
"typescript": "^4.4.4",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@testing-library/dom": "^8.7.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"@types/ioredis": "^4.27.6",
"@types/node": "^16.10.2",
"@types/react": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"babel-jest": "^27.2.4",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-hooks": "^1.0.0",
"eslint-plugin-react": "^7.26.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"msw": "^0.35.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.4.4",
"wait-on": "^6.0.0"
}
}