-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "server-v4-integration-demos",
"private": "true",
"description": "Demo integration packages for Apollo Server v4",
"keywords": [
"apollo",
"server",
"graphql",
"typescript",
"node"
],
"author": "Apollo <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"clean": "git clean -dfqX",
"build": "tsc --build tsconfig.build.json",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"postinstall": "npm run build",
"test": "jest --verbose",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@apollo/server-integration-testsuite": "4.0.0-alpha.2",
"@apollo/utils.withrequired": "1.0.0",
"@jest/types": "28.1.3",
"@types/aws-lambda": "8.10.101",
"@types/jest": "28.1.6",
"fastify": "4.3.0",
"graphql": "16.5.0",
"jest": "28.1.3",
"jest-junit": "14.0.0",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"volta": {
"node": "16.16.0",
"npm": "8.15.1"
}
}