-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "nonci-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"lint": "npx eslint .",
"dev": "tsx watch src/index.ts --clear-screen=false",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --external:express --external:cors",
"start": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --external:express --external:cors && node dist/index.js",
"type-check": "tsc",
"db:push": "prisma db push",
"start:setup": "node --loader ts-node/esm ./scripts/setup.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.0.0",
"@solana/web3.js": "^1.78.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"amqplib": "^0.10.3",
"amqplib-binary-retry": "^1.0.2",
"bs58": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"joi": "^17.9.2",
"tsx": "^3.12.7",
"winston": "^3.9.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/node": "^20.4.0",
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"esbuild": "^0.18.11",
"nodemon": "^3.0.1",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}