-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "qlutch",
"description": "QLutch is a lightweight, server-side caching solution for GraphQL using Redis",
"version": "1.0.4",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "concurrently \"webpack server --open\" \"nodemon src/server/server.js\"",
"start": "node server/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"GraphQL",
"graphql",
"Redis",
"redis",
"cache",
"caching",
"qlutch",
"QLutch"
],
"author": "Renee Toscan, Allan Ross, Lisa Rodrigues, Michael Weckop",
"license": "ISC",
"dependencies": {
"bytes": "^3.1.2",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"graphql-request": "^6.1.0",
"mongoose": "^7.6.3",
"node-fetch": "^2.7.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"redis": "^4.6.8",
"webpack-dev-server": "^4.15.1"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"node-sass": "^9.0.0",
"nodemon": "^3.0.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}