-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@giveth/giveconomy-notification-service",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=staging ts-node --project ./tsconfig.json index.ts",
"start:docker:server": "pm2-runtime ./build/index.js",
"dev": "NODE_ENV=staging ts-node --project ./tsconfig.json index.ts",
"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 && tsc-alias && yarn copy-files && yarn link-dirs",
"serve": "yarn build && pm2 startOrRestart ecosystem.config.js --env develop",
"copy-files": "cp src/repository/schema.sql build/src/repository/schema.sql",
"link-dirs": "cd build && ln -s ../data && ln -s ../config && ln -s ../logs",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giveth/giveconomy-notification-service.git"
},
"keywords": [
"giveth",
"giveconomy",
"notification"
],
"author": "Amin Latifi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Giveth/giveconomy-notification-service/issues"
},
"homepage": "https://github.com/Giveth/giveconomy-notification-service#readme",
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"async-mutex": "^0.4.0",
"axios": "^1.2.0",
"bunyan": "^1.8.15",
"bunyan-rotating-file-stream": "^2.0.3",
"dotenv": "^16.0.1",
"ethers": "^5.7.2",
"patch-package": "^6.5.0",
"pm2": "^5.2.2",
"sqlite3": "^5.1.2",
"web3": "^1.8.1",
"web3-providers-ws": "^1.8.1",
"winston": "^3.8.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/sqlite3": "^3.1.8",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.1",
"tsconfig-paths": "^4.1.1",
"tscpaths": "^0.0.9",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.3",
"typescript-transform-paths": "^3.4.4"
}
}