-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.75 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
57
58
59
{
"name": "@pondigitalsolutions/rc-storefront-api",
"version": "0.0.1",
"sideEffects": false,
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --rootDir ."
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pondigitalsolutions/rc-storefront-api.git"
},
"author": {
"name": "Bart Janssen",
"email": "[email protected]"
},
"email": "[email protected]",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/pondigitalsolutions/rc-storefront-api/issues"
},
"homepage": "https://github.com/pondigitalsolutions/rc-storefront-api#readme",
"dependencies": {
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-http": "^1.5.16",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@graphql-tools/mock": "^6.2.4",
"apollo-link-schema": "^1.2.4",
"apollo-server-testing": "^2.18.2",
"graphql-tools": "^4.0.6",
"jest": "^26.6.0",
"jest-transform-graphql": "^2.1.0",
"rollup": "^1.25.2",
"rollup-plugin-graphql": "^0.1.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^26.4.1",
"typescript": "^3.6.4"
},
"files": [
"lib"
]
}