-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "@giveth/givpower-bot",
"version": "0.0.0",
"description": "GIVpower bot",
"main": "./dist/index.js",
"scripts": {
"start-dev": "NODE_ENV=develop ts-node --project ./tsconfig.json ./src/index.ts",
"start": "cd build && node ./src/index.js",
"tslint": "tslint -c tslint.json '{src,test,types}/**/*.ts'",
"tslint:fix": "tslint -c tslint.json --fix '{src,test,types}/**/*.ts'",
"clean": "rm -rf build",
"build": "yarn clean && tsc -p tsconfig.json && cd build && ln -s ../config .",
"serve": "yarn build && pm2 startOrRestart ecosystem.config.js --env develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giveth/givpower-bot.git"
},
"keywords": [
"giveth",
"giv",
"givpower",
"bot"
],
"author": "Amin Latifi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Giveth/givpower-bot/issues"
},
"homepage": "https://github.com/Giveth/givpower-bot#readme",
"dependencies": {
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"typescript": "^4.7.4",
"winston": "^3.8.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"prettier": "^2.4.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0"
}
}