-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@milktoast-lab/SolNFTBot",
"version": "0.1.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=16.6"
},
"scripts": {
"dev": "nodemon",
"ts-run": "ts-node src/server.ts",
"build": "tsc",
"start": "NODE_PATH=./dist/src NODE_ENV=production node dist/src/server.js",
"test": "jest --no-watchman",
"lint-format": "prettier -c ./src/**/*.ts",
"fix-format": "prettier -w ./src/**/*.ts"
},
"dependencies": {
"@discordjs/builders": "^0.8.1",
"axios": "^0.25.0",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@metaplex/js": "^2.0.1",
"@solana/web3.js": "^1.29.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"babel-jest": "^27.3.1",
"jest": "^27.2.5",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"tsconfig-paths": "^3.11.0",
"typescript": "4.4.4"
}
}