-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 955 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
{
"name": "graphql-spacex",
"version": "1.0.0",
"description": "GraphQL example using SpaceX public API",
"main": "index.js",
"scripts": {
"compile": "esbuild ./src/index.ts --bundle --outdir=dist --platform=node --target=es2020",
"start": "yarn compile && node ./dist/index.js",
"build-tests": "cd ./apiTests && tsc",
"cucumber": "yarn build-tests && cucumber-js ./apiTests/src/steps --import ./apiTests/dist/*.steps.js"
},
"keywords": [],
"author": "Ljupche Vasilev",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@apollo/server": "^4.9.5",
"graphql": "^16.8.1"
},
"devDependencies": {
"typescript": "^5.3.3",
"@cucumber/cucumber": "^10.0.1",
"@types/chai": "^4.3.11",
"@types/chai-http": "^4.2.0",
"@types/chai-subset": "^1.3.5",
"@types/node": "^20.10.4",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"chai-subset": "^1.6.0",
"esbuild": "^0.19.9"
}
}