-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.03 KB
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
{
"name": "Contract-Butler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epg323/Contract-Butler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/epg323/Contract-Butler/issues"
},
"homepage": "https://github.com/epg323/Contract-Butler#readme",
"dependencies": {
"@dfuse/client": "^0.3.17",
"dotenv": "^8.2.0",
"eos-common": "^0.8.0",
"eosjs": "^21.0.3",
"graphql-request": "^3.4.0",
"husky": "^5.0.9",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"nodemon": "^2.0.7",
"pretty-quick": "^3.1.0",
"winston": "^3.3.3",
"ws": "^7.4.3"
},
"devDependencies": {
"chai": "^4.3.0",
"mocha": "^8.3.0",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}