-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "sponsor-gas-backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx tsc && cp -R public dist ",
"prebuild": "rm -rf dist",
"start": "node dist/index.js",
"postinstall": "prisma generate",
"dev": "concurrently \"npx tsc --watch && cp -R public dist \" \"nodemon -q dist/index.js\""
},
"author": "Karandeep Singh",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.1.0",
"@worldcoin/idkit": "^0.5.1",
"axios": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.7.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"web3.storage": "^4.5.5"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/express": "^4.17.17",
"@types/node": "^20.4.2",
"chai": "^4.3.4",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"nodemon": "^3.0.1",
"prisma": "^5.1.0",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6"
}
}