forked from hozzjss/pollen-cred-fetcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "pollen-cred-fetcher",
"version": "1.0.0",
"description": "A script to fetch and upload cred data every 6 hours",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node ./dist/index.js",
"dev": "ts-node-dev --watch --respawn --transpile-only ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1Hive/pollen-cred-fetcher.git"
},
"keywords": [
"1Hive",
"sourcecred",
"pollen"
],
"author": "1Hive",
"license": "MIT",
"bugs": {
"url": "https://github.com/1Hive/pollen-cred-fetcher/issues"
},
"homepage": "https://github.com/1Hive/pollen-cred-fetcher#readme",
"devDependencies": {
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/mongoose": "^5.10.5",
"@types/node": "^14.14.41",
"dotenv": "^9.0.0",
"mongodb": "^3.6.6",
"mongoose": "^5.12.7",
"node-fetch": "^2.6.1",
"sourcecred": "^0.10.1"
}
}