forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "@nhost/google-translation",
"version": "0.0.6",
"description": "Google Translation GraphQL API",
"license": "MIT",
"keywords": [
"google translation",
"graphql",
"api",
"nhost",
"hasura"
],
"author": "Nhost",
"homepage": "https://nhost.io",
"bugs": "https://github.com/nhost/nhost/issues",
"repository": {
"type": "git",
"url": "https://github.com/nhost/nhost.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "NODE_ENV=development ts-node-dev -r dotenv/config dev/server.ts",
"dev": "vite build --config ../../config/vite.lib.dev.config.js",
"build": "tsc",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prettier": "prettier --check src/",
"prettier:fix": "prettier --write src/",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"verify": "run-p prettier lint",
"verify:fix": "run-p prettier:fix lint:fix"
},
"dependencies": {
"@google-cloud/translate": "^7.0.3",
"@graphql-yoga/node": "^2.13.13",
"@pothos/core": "^3.22.5",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"dotenv": "^16.0.2",
"typescript": "^4.8.4"
}
}