-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"name": "graphql-simple-fetch",
"version": "1.0.1",
"description": "Lightweight request library for graphql with support for graphql-multipart-request-spec",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"author": "Divid AB",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dividab/graphql-simple-fetch.git"
},
"dependencies": {
"extract-files": "^5.0.1"
},
"devDependencies": {
"@types/node": "^12.7.5",
"graphql": "^14.5.6",
"graphql-tag": "^2.10.1",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.1.1",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"scripts": {
"start": "webpack-dev-server --config demo/webpack.config.js",
"build": "rimraf dist && rimraf typings && tsc -p src"
},
"files": [
"/typings",
"/dist",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}