-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "apollo-cache-lite",
"version": "0.1.1",
"description": "A lightweight cache implementation for Apollo Client.",
"license": "GPL-3.0-or-later",
"repository": "thedevcore/apollo-cache-lite",
"homepage": "https://github.com/thedevcore/apollo-cache-lite",
"bugs": "https://github.com/thedevcore/apollo-cache-lite/issues",
"keywords": [
"apollo",
"apollo-client",
"apollo-cache",
"graphql"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --runInBand --colors --testPathPattern",
"test:dev": "jest --runInBand --colors --watch --testPathPattern",
"lint": "tslint src/**/*.ts",
"build": "cross-env NODE_ENV=production tsc",
"prepublish": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"apollo-cache": "1.3.2",
"apollo-utilities": "1.3.2",
"deepmerge": "4.0.0"
},
"devDependencies": {
"apollo-client": "2.6.4",
"apollo-link-http": "1.5.16",
"apollo-link-schema": "1.2.4",
"apollo-server": "2.9.3",
"cross-env": "6.0.0",
"graphql": "14.5.6",
"graphql-tag": "2.10.1",
"graphql-tools": "4.0.5",
"jest": "24.9.0",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"typescript": "3.6.3"
}
}