-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
117 lines (117 loc) · 3.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "votingapp",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"prebuild": "pnpm run hh:typechain",
"dev": "dotenv -e .env -- ts-node-dev --transpile-only ./src/main.ts",
"seeder": "ts-node --transpile-only ./src/seeder.ts",
"build": "tsup --config build.ts",
"start:prod": "dotenv -e .env -- node ./dist/main.js",
"start:local": "dotenv -e .env -- node ./dist/main.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"migrate:dev": "pnpm dlx prisma migrate dev",
"migrate:deploy": "pnpm dlx prisma migrate deploy",
"hh": "npx hardhat node",
"hh:deploy": "npx hardhat run src/scripts/deploy.ts --network localhost",
"hh:typechain": "npx hardhat typechain",
"hh:compile": "npx hardhat compile",
"hh:ignite": "npx hardhat ignition deploy tmp/hardhat/ignition/modules/Voting.ts --network localhost",
"vercel-build": "prisma generate && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/helmet": "^4.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.191",
"@types/memory-cache": "^0.2.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.3",
"@types/nodemailer": "^6.4.8",
"@types/passport": "^1.0.11",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^7.11.0",
"chai": "4",
"esbuild": "^0.19.8",
"eslint": "~9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.13.4",
"globals": "^15.3.0",
"hardhat": "^2.22.15",
"prisma": "^5.21.1",
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
"tsup": "^8.1.0",
"typechain": "^8.3.2",
"typescript-eslint": "^7.11.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.1",
"@aws-sdk/client-s3": "^3.606.0",
"@bull-board/api": "^5.19.0",
"@bull-board/express": "^5.16.0",
"@prisma/client": "^5.21.1",
"@types/compression": "^1.7.2",
"argon2": "^0.30.3",
"axios": "^1.4.0",
"batch": "^0.6.1",
"bullmq": "^5.7.6",
"compression": "^1.7.4",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.0",
"firebase-admin": "^12.3.0",
"geolib": "^3.3.4",
"helmet": "^6.0.1",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.7.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"nanoid": "^3.3.7",
"nodemailer": "^6.9.13",
"openapi3-ts": "^4.3.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"pino-pretty": "^13.0.0",
"redis": "^4.6.11",
"socket.io": "^4.7.5",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"yaml": "^2.5.0",
"zod": "^3.21.4"
},
"author": "",
"license": "ISC"
}