-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "oryx-layer-inserter",
"version": "1.0.0",
"description": "GraphQL Mesh for the Oryx API",
"main": "src/index.ts",
"scripts": {
"start": "mesh dev",
"build": "mesh build",
"set": "ts-node -r dotenv/config src/index.ts",
"dev": "ts-node-dev -r dotenv/config src/index.ts",
"lint": "eslint",
"lint-fix": "eslint --fix",
"format": "prettier \"src/**/*.{ts,js}\" --write",
"test": "jest --setupFiles dotenv/config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phoscur/oryx-layer-inserter.git"
},
"keywords": [
"oryx",
"graphql-mesh"
],
"author": "Phoscur",
"license": "ISC",
"bugs": {
"url": "https://github.com/Phoscur/oryx-layer-inserter/issues"
},
"homepage": "https://github.com/Phoscur/oryx-layer-inserter#readme",
"dependencies": {
"@graphql-mesh/cli": "^0.82.33",
"@graphql-mesh/graphql": "^0.34.17",
"@graphql-mesh/runtime": "^0.46.24",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"node-persist": "^3.1.3",
"prompts": "^2.4.2",
"ts-node": "^10.9.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node-persist": "^3.1.3",
"@types/prompts": "^2.4.4",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0"
}
}