-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.88 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
{
"name": "@diakem/api-bindings",
"version": "0.0.6",
"description": "DiaKEM multi-purpose API bindings",
"main": "lib/index.js",
"types": "src/index.d.ts",
"files": [
"lib"
],
"scripts": {
"ts:type-check": "tsc --noEmit",
"ts:type-check:watch": "npm run type-check -- --watch",
"generate": "NODE_NO_WARNINGS=1 graphql-codegen --config codegen.yml",
"build": "npm run generate && npm run format && npm run build:js && npm run build:types",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"start": "babel-watch --extensions \".ts\" src/index.ts",
"debug": "babel-watch --inspect 0.0.0.0:9229 --extensions \".ts\" src/index.ts",
"lint": "eslint --fix --ext .ts ./src",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(ts|json)\"",
"prepare": "husky install",
"release": "release-it"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/fragment-matcher": "3.2.1",
"@graphql-codegen/graphql-modules-preset": "^2.3.8",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-apollo-angular": "^3.4.7",
"@graphql-codegen/typescript-operations": "2.3.5",
"@graphql-codegen/typescript-react-apollo": "3.2.11",
"@graphql-codegen/typescript-react-query": "^3.5.9",
"@graphql-codegen/typescript-resolvers": "^2.6.1",
"@graphql-codegen/typescript-stencil-apollo": "2.2.8",
"@graphql-codegen/typescript-urql": "^3.5.6",
"@graphql-codegen/typescript-vue-apollo-smart-ops": "^2.2.8",
"@graphql-codegen/typescript-vue-urql": "^2.2.9",
"@graphql-codegen/urql-introspection": "2.1.1",
"@release-it/conventional-changelog": "^4.3.0",
"@types/node-schedule": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-watch": "^7.7.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"release-it": "^14.13.1",
"typescript": "^4.6.3"
},
"author": {
"name": "Selcuk Kekec",
"email": "khskekec@gmail.com"
},
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.5.10",
"@graphql-codegen/cli": "^2.6.2",
"apollo-angular": "^3.0.0",
"graphql": "^15.8.0"
}
}