-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "ton_2x",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev:web": "npx tsx ./src/services/web/index.ts",
"dev:bot": "npx tsx ./src/services/bot/index.ts",
"dev:front": "npm --prefix ./frontend run dev",
"build:front": "npm --prefix ./frontend run build",
"build:back": "npx tsc",
"pretty": "npx prettier --write ./src ./tests",
"lint": "eslint ./src ./tests --fix",
"migrations": "npx drizzle-kit",
"drizzle:check-api-changes": "npm run migrations up",
"migrations:run": "npx tsx ./src/db/scripts/migrate.ts",
"migrations:generate": "npm run drizzle:check-api-changes && npm run migrations check && npm run migrations generate",
"migrations:down": "npm run migrations drop",
"test": "tsx --test --test-reporter spec '**/tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klntsky/ton_2x.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/klntsky/ton_2x/issues"
},
"homepage": "https://github.com/klntsky/ton_2x#readme",
"dependencies": {
"@tonconnect/ui": "^2.0.3",
"@types/express": "^4.17.21",
"amqplib": "^0.10.4",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"express": "^4.19.2",
"postgres": "^3.4.4",
"telegraf": "^4.16.3",
"tonapi-sdk-js": "^1.0.11",
"tonweb": "^0.0.66",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@typescript-eslint/utils": "^7.13.0",
"drizzle-kit": "^0.22.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"prettier": "^3.3.2",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
}
}