-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 883 Bytes
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
{
"name": "solana-faucet",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"serve": "node build/main.js",
"start": "nodemon --exec node --loader ts-node/esm/transpile-only src/main.ts"
},
"dependencies": {
"@discordx/importer": "^1.1.2",
"@discordx/utilities": "^4.1.0",
"@solana/web3.js": "^1.39.0",
"bs58": "^5.0.0",
"discord.js": "^13.6.0",
"discordx": "^9.5.1",
"dotenv": "^16.0.0",
"redis": "^4.0.6",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/node": "^17.0.23",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}