-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "graphql-optimize-query",
"version": "1.1.2",
"description": "",
"author": "Thomas Weustenfeld",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"homepage": "https://github.com/tw00/graphql-optimize-query#readme",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
"prepublish:public": "npm run build && npm version patch",
"publish:public": "npm publish --access public",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint": "^7.30.0",
"graphql-tag": "^2.12.5",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup": "^2.52.7",
"ts-jest": "^27.0.3",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"graphql": "^15.5.1"
}
}