-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "apollo-link-computed",
"version": "1.1.2",
"description": "Manage your application's state with Apollo!",
"author": "Lorenzo Ruiz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Drawbotics/apollo-link-computed"
},
"main": "dist/ApolloLinkComputed.js",
"module": "lib/index.js",
"scripts": {
"clean": "rimraf dist && rimraf lib",
"docs:serve": "rdw serve --port 8080 DOCS.mdx",
"docs:build": "rdw build DOCS.mdx --out-dir docs",
"build:umd": "NODE_ENV=production webpack --config webpack.config.js",
"build:module": "NODE_ENV=production babel src --ignore src/docs/ --out-dir lib/",
"build": "npm run clean && npm run build:umd && npm run build:module",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"apollo-link": "^1.0.0"
},
"dependencies": {
"apollo-utilities": "^1.0.20",
"fclone": "^1.0.11",
"fraql": "^1.1.1",
"graphql-anywhere": "^4.1.18",
"graphql-tools": "^3.1.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"aphrodite-jss": "^2.1.0",
"apollo-boost": "^0.1.15",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.8",
"better-webpack-progress": "^1.1.0",
"codemirror": "^5.40.0",
"codemirror-graphql": "^0.6.12",
"dedent": "^0.7.0",
"graphql": "^0.13.2",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-display-window": "^2.0.0",
"rimraf": "^2.6.2",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-stylish": "^0.1.8"
}
}