-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "graphql-data-proxy",
"version": "0.0.0",
"description": "code first, type safe graphql client",
"files": [
"lib",
"es5"
],
"main": "es5/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Harry Kightlinger <kightlingerh@gmail.com>",
"license": "MIT",
"private": false,
"sideEffects": false,
"scripts": {
"clean": "rimraf lib es5",
"jest": "jest",
"build": "yarn run clean && yarn run prettier-write && tsc --p tsconfig.json && tsc --p tsconfig.es6.json",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,__tests__}/**/*.ts\"",
"prettier-write": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,__tests__}/**/*.ts\"",
"test": "yarn jest"
},
"peerDependencies": {
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"vue": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"dtslint": "github:gcanti/dtslint",
"fast-check": "^2.11.0",
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^4.1.3",
"vue": "^3.0.5"
}
}