-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "flappy-bird-server",
"version": "0.0.1",
"private": true,
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.10",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@fastify/cors": "8.4.1",
"@ngrok/ngrok": "^0.9.1",
"@orbs-network/ton-access": "2.3.3",
"@ton-community/gamefi-sdk": "0.0.1",
"@ton/core": "0.53.0",
"@ton/crypto": "3.2.0",
"@ton/ton": "13.9.0",
"dotenv": "16.3.1",
"fastify": "4.22.2",
"pg": "8.11.3",
"reflect-metadata": "0.1.13",
"sqlite3": "^5.1.6",
"ton-crypto": "3.2.0",
"typeorm": "0.3.17",
"zod": "3.22.4"
},
"scripts": {
"start": "ts-node src/index.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli",
"typeorm:run-migrations": "npm run typeorm migration:run -- -d ./src/data-source.ts",
"typeorm:generate-migration": "npm run typeorm -- -d ./src/data-source.ts migration:generate ./migrations/$npm_config_name",
"typeorm:create-migration": "npm run typeorm -- migration:create ./migrations/$npm_config_name"
}
}