-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "cic-ussd",
"version": "0.1.0",
"description": "A ussd client implementation that interfaces the community inclusion currencies custodial system.",
"repository": "https://github.com/grassrootseconomics/cic-ussd",
"bugs": "https://github.com/grassrootseconomics/cic-ussd/issues",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.json && tsc-alias -p tsconfig.json&& npm run copy-sql",
"copy-sql": "copyfiles -u 1 \"src/**/*.sql\" dist",
"dev": " ts-node-dev --exit-child --require dotenv/config -r tsconfig-paths/register src/index.ts -r pino-debug src/index.ts | pino-pretty -c -t",
"start": "node dist/index.js",
"typesafe-i18n": "typesafe-i18n"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/postgres": "^5.2.0",
"@fastify/sensible": "^5.2.0",
"@types/blocked-at": "^1.0.1",
"@types/node": "^18.16.5",
"@types/pg": "^8.6.6",
"bcrypt": "^5.1.0",
"blocked-at": "^1.2.0",
"copyfiles": "^2.4.1",
"ethers": "^6.3.0",
"fastify": "^4.17.0",
"fastify-metrics": "^10.3.0",
"fastify-plugin": "^4.5.0",
"graphql-request": "^5.2.0",
"iconv-lite": "^0.6.3",
"ioredis": "^5.3.2",
"libphonenumber-js": "^1.10.30",
"moment-timezone": "^0.5.43",
"nats": "^2.13.1",
"pino": "^8.12.1",
"redis-json": "^6.0.3",
"ts-essentials": "^9.3.2",
"tsc-alias": "^1.8.6",
"typesafe-i18n": "^5.24.3",
"xstate": "^4.37.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/autocannon": "^7.9.0",
"auto-changelog": "^2.4.0",
"autocannon": "^7.11.0",
"madge": "^6.0.0",
"release-it": "^15.10.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0"
},
"optionalDependencies": {
"@xstate/cli": "^0.4.2",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"pino-debug": "^2.0.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"ts-standard": "^12.0.2"
}
}