-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.99 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.99 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
47
48
49
50
51
52
53
54
55
{
"name": "scala-pool",
"version": "1.5.0",
"license": "GPL-2.0",
"author": "@scalahq",
"repository": {
"type": "git",
"url": "https://github.com/scalaproject/scala-pool.git"
},
"dependencies": {
"args-parser": "^1.3.0",
"async": "^3.2.4",
"base58-native": "^0.1.4",
"bignum": "^0.13.1",
"cli-color": "^2.0.3",
"cryptoforknote-util": "git+https://github.com/scala-network/node-cryptoforknote-util#feff41dcbc673f433468d78ac045c257f36216f9",
"cryptonight-hashing": "git+https://github.com/scala-network/scala-hashing.git",
"dateformat": "^4.6.2",
"fastify": "^3.11.0",
"fastify-compress": "^3.4.1",
"fastify-static": "^3.4.0",
"pm2": "^4.5.4",
"read-package-json": "^2.1.1",
"redis": "v3.1.2",
"semistandard": "^16.0.0"
},
"engines": {
"node": ">=14.0.0 <16.0.0"
},
"devDependencies": {
"ava": "^3.10.1",
"eslint": "^7.13.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.7",
"snazzy": "^9.0.0"
},
"scripts": {
"api": "node init.js --module=api",
"comms": "node init.js --module=comms",
"payments": "node init.js --module=payments",
"pool": "node init.js --module=pool",
"remote": "node init.js --module=remote",
"unlocker": "node init.js --module=unlocker",
"web": "node init.js --module=web --port=80",
"pooldev": "npx nodemon init.js -a '--module=pool' --watch lib --watch config",
"test": "npx ava",
"lint": "npx semistandard lib/* --verbose | npx snazzy",
"lint_md": "npx semistandard --plugin markdown '**/*.md' --verbose | npx snazzy",
"lint_html": "npx semistandard --plugin html '**/*.html' --verbose | npx snazzy"
}
}