-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "graphql-simple-cache",
"version": "0.0.13",
"description": "A simple, flexible, scalable caching solution for graphql servers.",
"repository": {
"type": "git",
"url": "https://github.com/ikhnaton/graphql-simple-cache.git"
},
"main": "dist/index.js",
"scripts": {
"prestart": "node_modules/.bin/webpack --config webpack.config.js",
"build": "node_modules/.bin/webpack --config webpack.config.js",
"test": "jest",
"start": "node index.js",
"dev": "node_modules/.bin/webpack --config webpack.config.js --watch"
},
"keywords": [
"graphql",
"cache",
"caching",
"simple cache",
"graphql performance"
],
"author": "ikhnaton <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"concurrently": "^4.0.1",
"jest": "^23.6.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testURL": "http://localhost"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"redis": "^2.8.0"
}
}