-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
59 lines (59 loc) · 1.67 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": "graphql-lodash",
"description": "GraphQL Lodash",
"keywords": [
"GraphQL",
"lodash",
"underscore",
"fp",
"functional"
],
"license": "MIT",
"author": "APIs.guru <[email protected]>",
"homepage": "https://github.com/APIs-guru/graphql-lodash#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/graphql-lodash.git"
},
"bugs": {
"url": "https://github.com/APIs-guru/graphql-lodash/issues"
},
"version": "1.3.4",
"main": "lib/graphql-lodash.bundle.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config demo/webpack.demo.js",
"build:demo": "webpack -p --config demo/webpack.demo.js",
"deploy": "deploy-to-gh-pages --local demo",
"tsc": "tsc",
"build:bundle": "webpack -p --config webpack.config.js",
"build:package": "rimraf lib/ && npm run tsc && npm run build:bundle"
},
"dependencies": {
"graphql": "^0.11.7",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@types/graphql": "0.11.8",
"@types/lodash-es": "4.17.3",
"@types/react": "15.6.28",
"@types/react-dom": "15.5.12",
"css-loader": "4.2.1",
"deploy-to-gh-pages": "1.3.7",
"graphiql": "0.11.10",
"graphiql-workspace": "github:apis-guru/graphiql-workspace#tab-fork-dist",
"mini-css-extract-plugin": "^0.10.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-modal": "3.11.2",
"rimraf": "3.0.2",
"style-loader": "1.2.1",
"ts-loader": "^8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.0"
}
}