-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@digicatapult/sqnc-matchmaker-api",
"version": "3.1.5",
"description": "An OpenAPI Matchmaking API service for SQNC",
"main": "src/index.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"depcheck": "depcheck",
"build:tsoa": "tsoa spec-and-routes",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/index.js",
"dev": "concurrently \"NODE_ENV=dev nodemon | pino-colada\" \"nodemon -x tsoa spec-and-routes --ignore src/routes.ts --ignore src/swagger.json\"",
"test:offchain": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./test/integration/offchain/*.test.ts",
"test:onchain": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./test/integration/onchain/*.test.ts",
"test:unit": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./src/**/*.test.ts",
"db:cmd": "node --import=@digicatapult/tsimp/import ./node_modules/.bin/knex",
"db:migrate": "npm run db:cmd -- migrate:latest --knexfile src/lib/db/knexfile.ts",
"db:rollback": "npm run db:cmd -- migrate:rollback --knexfile src/lib/db/knexfile.ts",
"coverage": "c8 npm run test",
"flows": "process-management create -h localhost -p 9944 -u //Alice -f processFlows.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/sqnc-matchmaker-api.git"
},
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"keywords": [
"OpenAPI"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/sqnc-matchmaker-api/issues"
},
"homepage": "https://github.com/digicatapult/sqnc-matchmaker-api#readme",
"devDependencies": {
"@digicatapult/sqnc-process-management": "^2.2.135",
"@digicatapult/tsimp": "^2.0.12",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/chai": "^5.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.8",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"concurrently": "^9.1.0",
"depcheck": "^1.4.7",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jsonwebtoken": "^9.0.2",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"pino-colada": "^2.2.2",
"prettier": "^3.4.1",
"sinon": "^19.0.2",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"undici": "^6.21.0"
},
"dependencies": {
"@digicatapult/tsoa-oauth-express": "^0.1.73",
"@polkadot/api": "^14.3.1",
"@tsoa/runtime": "^6.5.1",
"async-mutex": "^0.5.0",
"base-x": "^5.0.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.21.1",
"knex": "^3.1.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.13.1",
"pino": "^9.5.0",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.5.1",
"tsyringe": "^4.8.0",
"uuid": "^11.0.3",
"zod": "^3.23.8"
}
}