-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "mobql",
"version": "0.1.1",
"description": "A data manager built on MobX that loads your data from your GraphQL API as you need it",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Rodentman87 <Rodentman87@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Rodentman87/mobql#readme",
"repository": "github:rodentman87/mobql",
"scripts": {
"build": "tsc",
"test": "jest"
},
"dependencies": {
"gql-query-builder": "^3.5.5",
"mobx": "^6.1.8",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.33",
"babel-jest": "^26.6.3",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}