-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "pollen-bot",
"version": "0.0.1",
"description": "A discord bot to support Pollen duties 🏵",
"keywords": [
"discord",
"1hive",
"sourcecred"
],
"main": "src/index.js",
"scripts": {
"lint": "npx eslint ./src",
"lint-fix": "npx eslint ./src --fix",
"test": "npx jest --passWithNoTests",
"start": "npm run build && node ./dist/index.js",
"dev": "ts-node-dev --watch --respawn --transpile-only ./src/index.ts",
"build": "tsc"
},
"author": "1Hive",
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.15.4",
"@types/mongoose": "^5.10.5",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"cron": "^1.8.2",
"cross-fetch": "^3.1.4",
"discord.js": "^13.1.0",
"dotenv": "^8.2.0",
"ethers": "^5.1.3",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"node-fetch": "^2.6.1",
"sourcecred": "^0.8.5",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"ts-node-dev": "^1.1.6"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npx eslint --fix"
]
},
"engines": {
"node": ">=16.6.0"
}
}