-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "solbot",
"version": "1.0.0",
"description": "Solana Discord Tipping Bot",
"main": "src/index.js",
"scripts": {
"lint": "eslint src --fix",
"start": "nodemon --exec babel-node src/index.js",
"migrate": "sequelize-cli db:migrate",
"test": "jest"
},
"author": "Paul Schaaf",
"license": "ISC",
"dependencies": {
"@solana/web3.js": "^0.71.9",
"bip39": "^3.0.2",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"keyv": "^4.0.1",
"node-fetch": "^2.6.0",
"sequelize": "^6.3.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"nodemon": "^2.0.4",
"pg": "^8.3.0",
"sequelize-cli": "^6.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint; npm run test"
}
}
}