-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 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
{
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"name": "magnicache",
"description": "Lightweight caching layer for graphQL",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack serve & nodemon ./magnicache-demo/server.js",
"test-server": "jest magnicache-server.test.ts",
"test-client": "jest magnicache-client.test.ts",
"test-demo": "NODE_ENV=test jest magnicache-demo.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/MagniCache.git"
},
"keywords": [
"cache",
"graphQL"
],
"author": "MagniCache",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/MagniCache/issues"
},
"homepage": "https://github.com/oslabs-beta/MagniCache#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@svgr/webpack": "^6.5.1",
"@types/jest": "^29.4.0",
"@types/lodash.mergewith": "^4.6.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^9.1.2",
"bootstrap": "^5.2.3",
"concurrently": "^7.6.0",
"cross-env": "^5.2.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"graphql": "^16.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"lodash.mergewith": "^4.6.2",
"nodemon": "^2.0.20",
"pg": "^8.10.0",
"react-bootstrap": "^2.7.2",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"supertest": "^6.3.3",
"throttle": "^1.0.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}