forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "wundergraph-open-telemetry",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm run start:services && run-p wundergraph open",
"start:services": "docker-compose up -d",
"wundergraph": "wunderctl up",
"open": "npm run wait-on:services && open-cli http://localhost:16686",
"wait-on:services": "wait-on -d 2000 http://localhost:16686",
"build:wundergraph": "wunderctl generate",
"cleanup": "docker-compose down -v",
"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": "^18.16.16",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"ts-jest": "^29.1.0",
"typescript": "^4.8.2",
"wait-on": "^6.0.1"
}
}