-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.39 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.39 KB
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
{
"name": "lightql",
"version": "1.0.0",
"description": "A lightweight, ultra-fast client-side cache for GraphQL.",
"main": "./src/client/index.tsx",
"scripts": {
"start": "npx ts-node ./src/simulation/server.ts",
"dev": "webpack-dev-server --mode development --open --hot & nodemon --watch './**/*.ts' --exec 'ts-node' ./src/simulation/server.ts",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/LightQL.git"
},
"keywords": [
"GraphQL",
"cache",
"client-side",
"lightweight"
],
"author": "LightQL Team - Cyrus Yari, Rhea Wu, Pierce Heska, Drew Tucker, and Cassidy Johnson cassidyiscoding@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/LightQL/issues"
},
"homepage": "https://github.com/oslabs-beta/LightQL#readme",
"dependencies": {
"@cubejs-client/core": "^0.31.15",
"chart.js": "^4.0.1",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"framer-motion": "^7.6.7",
"graphql": "^15.8.0",
"localforage": "^1.10.0",
"node-fetch": "^3.3.0",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.0.1",
"react-dom": "^18.2.0",
"react-favicon": "^1.0.1",
"react-intersection-observer": "^9.4.1",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"react-scroll": "^1.8.8",
"schema-utils": "^4.0.0",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/parser": "^5.48.1",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.2",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}