This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.52 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
{
"name": "logion-directory",
"version": "0.10.2",
"private": true,
"author": {
"name": "Logion Team",
"email": "info@logion.network",
"url": "https://logion.network/"
},
"license": "Apache-2.0",
"type": "module",
"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/logion/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=spec/support/jasmine.json",
"integration-test": "yarn run setup-test-db && NODE_OPTIONS=--loader=ts-node/esm jasmine --config=spec/support/jasmine-integration.json ; yarn run teardown-test-db",
"setup-test-db": "docker run -d --rm --name logion-test-db -e POSTGRES_PASSWORD=secret -p 5432:5432 postgres:12",
"teardown-test-db": "docker stop logion-test-db",
"coverage-unit": "nyc yarn run unit-test",
"coverage": "nyc yarn run test",
"typeorm": "node ./node_modules/typeorm/cli.js -d ./dist/db-tools/ormconfig.js"
},
"dependencies": {
"@logion/node-api": "^0.31.2",
"@logion/rest-api-core": "^0.5.2",
"ansi-regex": "^6.0.1",
"body-parser": "^1.20.2",
"bson": "^4.7.0",
"cors": "^2.8.5",
"moment": "^2.29.4",
"pg": "^8.8.0",
"source-map-support": "^0.5.21"
},
"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": "^5.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.9",
"@types/source-map-support": "^0.5.6",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"bignumber.js": "^9.1.2",
"istanbul-reports": "^3.1.7",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"moq.ts": "^9.0.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsc-watch": "^4.6.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@3.2.2"
}