forked from bff-backup/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 753 Bytes
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": "wundergraph-openapi-mocking",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "wunderctl up",
"build:wundergraph": "wunderctl generate",
"build": "npm run build:wundergraph",
"check": "tsc --noEmit",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@wundergraph/sdk": "^0.184.2",
"graphql": "^16.3.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "^17.0.15",
"@types/node-fetch": "^2.6.2",
"jest": "^29.6.1",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.0",
"typescript": "^4.8.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}