-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.24 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
{
"name": "cht-user-management",
"version": "2.1.0",
"main": "dist/index.js",
"dependencies": {
"@bull-board/api": "^5.17.0",
"@bull-board/fastify": "^5.17.0",
"@fastify/autoload": "^5.8.0",
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.2.0",
"@fastify/env": "^4.2.0",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^8.0.0",
"@fastify/static": "^7.0.1",
"@fastify/view": "^8.2.0",
"@types/html-minifier": "^4.0.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.201",
"@types/luxon": "^3.4.2",
"@types/node": "^20.8.8",
"@types/semver": "^7.5.8",
"@types/uuid": "^9.0.6",
"axios": "^1.5.1",
"axios-retry": "^4.0.0",
"bullmq": "^5.7.6",
"cht-conf": "github:medic/cht-conf#653-merge-primaries",
"csv": "^6.3.5",
"dotenv": "^16.3.1",
"fastify": "^4.27.0",
"fastify-metrics": "^11.0.0",
"fastify-sse-v2": "^3.1.2",
"html-minifier": "^4.0.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"libphonenumber-js": "^1.10.48",
"liquidjs": "^10.9.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"pino-pretty": "^10.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@medic/eslint-config": "^1.1.0",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/commander": "^2.12.2",
"@types/mocha": "^10.0.6",
"@types/rewire": "^2.5.30",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"commander": "^12.0.0",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"rewire": "^7.0.0",
"sinon": "^17.0.1",
"ts-mocha": "^10.0.0",
"tsc-watch": "^6.0.4"
},
"scripts": {
"cp-package-json": "cp package.json ./src",
"test": "npx ts-mocha test/{,**}/*.spec.ts --exclude test/integration/{,**}/*.spec.ts",
"build": "npm run cp-package-json && npx tsc",
"lint": "npx eslint --color --cache .",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"publish:cht-user-management": "SERVICE=cht-user-management node scripts/publish.js",
"publish:cht-user-management-worker": "SERVICE=cht-user-management-worker node scripts/publish.js",
"publish": "npm run publish:cht-user-management && npm run publish:cht-user-management-worker",
"start:worker": "node dist/worker/main.js",
"docker-start-redis": "npm run docker-stop-redis && docker run -d --rm --name test-redis -p 6363:6379 redis && sh test/scripts/wait_for_redis.sh 6363",
"docker-stop-redis": "docker stop test-redis || true",
"integration-test": "npm run docker-start-redis && npx ts-mocha test/integration/{,**}/*.spec.ts && npm run docker-stop-redis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medic/cht-user-management.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/medic/cht-user-management/issues"
},
"homepage": "https://github.com/medic/cht-user-management#readme"
}