generated from ptpaterson/typescript-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "faunadb-graphql-schema-loader",
"version": "0.2.1",
"description": "Package to simplify uploading GraphQL Schema to FaunaDB",
"keywords": [
"faunadb",
"graphql",
"typescript"
],
"license": "MIT",
"main": "build/index.js",
"files": [
"build/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ptpaterson/faunadb-graphql-schema-loader.git"
},
"scripts": {
"build": "tsc",
"buildw": "tsc -w",
"clean": "rimraf build/*",
"lint": "eslint .",
"postbuild": "prettier --write \"./build/**/*.{js,ts}\"",
"prebuild": "npm run clean",
"test": "jest --coverage",
"testw": "jest --watch"
},
"devDependencies": {
"@types/jest": "~28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "~5.33.1",
"@typescript-eslint/parser": "~5.33.1",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "~26.8.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "~28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "~28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"@graphql-tools/schema": "^9.0.1",
"got": "^11.8.3",
"graphql": "^16.6.0"
}
}