-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.56 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
{
"name": "logion-gateway",
"version": "0.5.0",
"private": true,
"author": {
"name": "Logion Team",
"email": "[email protected]",
"url": "https://logion.network/"
},
"license": "Apache-2.0",
"scripts": {
"build": "rimraf dist && yarn run generate-views && tsc --project ./tsconfig.app.json && cp package.json dist/",
"generate-views": "npx openapi-typescript resources/schemas.json --output src/controllers/components.ts",
"start": "yarn run build && NODE_ENV=development node dist/app.js",
"serve": "tsc-watch --p ./tsconfig.app.json --onSuccess \"env NODE_ENV=development node dist/app.js\"",
"test": "NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine.json",
"integration-test": "docker compose up -d && sleep 3 && ./scripts/init_data.sh && NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine-integration.json ; docker compose down",
"coverage": "nyc yarn run test"
},
"dependencies": {
"@logion/client": "^0.46.1",
"@logion/client-node": "^0.3.5",
"ansi-regex": "^6.0.1",
"body-parser": "^1.19.1",
"bson": "^4.6.1",
"cors": "^2.8.5",
"dinoloop": "^2.4.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-oas-generator": "^1.0.41",
"inversify": "^6.0.1",
"moment": "^2.29.1",
"mongoose": "^6.1.6",
"mongoose-to-swagger": "^1.4.0",
"node-fetch": "3.1.1",
"openapi-typescript": "5.1.0",
"source-map-support": "^0.5.21",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@tsconfig/node18": "^1.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.9",
"@types/nodemailer": "^6.4.4",
"@types/pug": "^2.0.6",
"@types/source-map-support": "^0.5.6",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"axios": "^1.3.1",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"moq.ts": "^10.0.6",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"supertest": "^6.2.1",
"ts-node": "^10.9.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"type": "module"
}