-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "express-prisma-todo-boilerplate",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "npx tsc && tsc-alias",
"build": "npm-run-all clean db:generate tsc",
"start": "node .",
"dev": "npm run db:generate && tsnd --respawn -r tsconfig-paths/register src/app.ts",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev --name init",
"db:studio": "npx prisma studio",
"db:push": "npx prisma db push"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.421.0",
"@prisma/client": "^5.11.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"big.js": "^6.2.1",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoin-address-validation": "^2.2.3",
"bitcoinjs-lib": "^6.1.5",
"cors": "^2.8.5",
"cryptr": "^6.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"node-telegram-bot-api": "^0.63.0",
"tiny-secp256k1": "^2.2.3",
"vis-network": "^9.1.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/bcryptjs": "^2.4.4",
"@types/big.js": "^6.2.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.3.3",
"@types/node-telegram-bot-api": "^0.64.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prisma": "^5.11.0",
"prisma-dbml-generator": "^0.10.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}