This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@digicatapult/wasp-api",
"version": "2.1.47",
"description": "GraphQL API service for WASP",
"main": "app/index.js",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/wasp-api.git"
},
"author": "Digital Catapult (https://www.digicatapult.org.uk/)",
"scripts": {
"build:docs": "./scripts/build-docs.sh",
"test": "NODE_ENV=test LOG_LEVEL=fatal MQTT_DELAY=500 mocha --config ./test/mocharc.json ./test",
"test:integration": "NODE_ENV=test LOG_LEVEL=fatal MQTT_DELAY=500 mocha --config ./test/mocharc.json ./test/integration",
"lint": "eslint .",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "NODE_ENV=dev nodemon app/index.js | pino-colada",
"coverage": "c8 npm run test"
},
"engines": {
"node": ">=18.13.0"
},
"dependencies": {
"@apollo/server": "^4.9.1",
"@apollo/utils.keyvadapter": "^3.0.0",
"@digicatapult/apollo-type-validation-plugin": "^1.1.4",
"@digicatapult/resolver-cache-datasource": "^1.0.0",
"@graphql-tools/schema": "^10.0.0",
"@keyv/redis": "^2.7.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dataloader": "^2.2.2",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"express": "^4.18.2",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.2",
"graphql-tag": "^2.12.6",
"keyv": "^4.5.3",
"node-fetch": "^3.3.2",
"pino": "^8.15.0",
"pino-http": "^8.4.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"c8": "^8.0.1",
"chai": "^4.3.7",
"depcheck": "^1.4.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"graphql-markdown": "^7.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"pino-colada": "^2.2.2",
"prettier": "^3.0.2",
"redis": "4.6.6",
"sinon": "^16.0.0",
"supertest": "^6.3.3"
}
}