-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "kalatori-daemon",
"version": "1.0.0",
"description": "Kalatori non-custodial Polkadot payments gateway daemon",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production tsc && node dist/server.js",
"dev": "NODE_ENV=development ts-node-dev src/server.ts",
"test": "NODE_ENV=test jest --config jest.config.js",
"typeorm": "ts-node ./node_modules/typeorm/cli.js --dataSource ./src/data-source.ts",
"migration:generate": "yarn typeorm migration:generate",
"migration:run": "yarn typeorm migration:run",
"init:migration": "ts-node ./node_modules/typeorm/cli.js --dataSource ./src/data-source.ts migration:generate ./src/migrations/InitialMigration"
},
"dependencies": {
"@polkadot/api": "^12.1.1",
"@polkadot/util-crypto": "^12.6.2",
"axios": "^1.7.2",
"dotenv": "^10.0.0",
"dotenv-flow": "^4.1.0",
"express": "^4.17.1",
"joi": "^17.13.3",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.0.2",
"typeorm": "^0.3.20",
"pg": "^8.7.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^29.5.12",
"@types/node": "^14.14.41",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}