-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
65
66
67
68
{
"name": "foundation-v2-server",
"version": "0.0.1",
"description": "A high performance Stratum pool-server written in Node.js",
"keywords": [
"bitcoin",
"stratum",
"mining",
"pool"
],
"homepage": "https://github.com/blinkhash/foundation-v2-server",
"bugs": {
"url": "https://github.com/blinkhash/foundation-v2-server/issues"
},
"license": "GPL-3.0",
"author": {
"name": "Nick Sarris"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"configs/",
".mock.js"
]
},
"scripts": {
"start": "nodemon ./index.js",
"prod:start": "pm2 start ./index.js",
"prod:stop": "pm2 stop ./index.js",
"prod:logs": "pm2 logs index",
"prod:update": "pm2 update",
"clean": "eslint . --ext .js --ignore-pattern node_modules/",
"clean:fix": "eslint . --ext .js --fix --ignore-pattern node_modules/",
"test": "jest --coverage",
"deploy": "npm install && npm run clean:fix && npm run test"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/blinkhash/foundation-v2-server.git"
},
"dependencies": {
"apicache": "^1.6.3",
"async": "^3.2.4",
"body-parser": "^1.20.0",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"nodemon": "^2.0.19",
"pg": "^8.7.3",
"pm2": "^5.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"mockdate": "^3.0.5",
"nock": "^13.2.4"
},
"engines": {
"node": ">=12.16"
},
"readmeFilename": "README.md"
}