This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
78 lines (78 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "apollo-link-firebase",
"version": "1.1.0",
"description": "Query Firebase in GraphQL with Apollo",
"author": {
"name": "wwwy3y3",
"email": "[email protected]"
},
"files": [
"lib"
],
"main": "lib/bundle.umd.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"keywords": [
"apollo",
"apollo-link",
"graphql",
"firebase"
],
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts",
"bundle": "./node_modules/.bin/webpack --config webpack.config.prod.js",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --timeout 10000 --compilers ts:ts-node/register --recursive --exit \"test/**/*.spec.ts\"",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.release.json --pretty",
"postbuild": "npm run bundle",
"prepublishOnly": "npm run clean && npm run build",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/faker": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "9.4.6",
"@types/react": "16.0.40",
"@types/react-dom": "16.0.4",
"@types/sinon": "^4.3.0",
"@types/webpack": "3.8.8",
"@types/webpack-env": "1.13.5",
"antd": "^3.2.3",
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.2.7",
"apollo-link": "^1.2.1",
"apollo-link-schema": "^1.0.6",
"apollo-utilities": "^1.0.9",
"chai": "^4.1.2",
"faker": "^4.1.0",
"graphql": "0.13.0",
"graphql-anywhere": "^4.1.6",
"graphql-tag": "^2.8.0",
"graphql-tools": "^2.21.0",
"lodash": "^4.17.5",
"mocha": "^5.0.4",
"nyc": "^11.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.3.1",
"react-apollo": "2.1.0-rc.1",
"react-dom": "^16.2.0",
"rimraf": "^2.5.4",
"sinon": "^4.4.8",
"ts-loader": "^4.0.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.7.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"repository": "Canner/apollo-link-firebase",
"license": "MIT",
"dependencies": {
"firebase": "^4.11.0"
}
}