-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "iota-payment",
"version": "0.0.27",
"description": "iota payment module for nodejs applications.",
"main": "index.js",
"scripts": {
"iotapay": "node ./bin/iotapay",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint lib --color",
"p": "prettier --write \"lib/**/*.js\"",
"p:w": "onchange \"lib/**/*.js\" -- prettier --write {{changed}}",
"docs:build": "documentation build lib/** -f md -o docs/README.md",
"build:dashboard": "cd ./dashboard && npm i && npm run build:prod"
},
"author": "huhn511",
"license": "MIT",
"dependencies": {
"@iota/checksum": "^1.0.0-beta.21",
"@iota/client-load-balancer": "github:iotaledger/client-load-balancer",
"@iota/converter": "^1.0.0-beta.21",
"@iota/core": "^1.0.0-beta.21",
"@iota/transaction-converter": "^1.0.0-beta.23",
"@iota/validators": "^1.0.0-beta.21",
"bluebird": "^3.5.5",
"camelize": "^1.0.0",
"colorette": "^1.1.0",
"commander": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"lowdb": "^1.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.0",
"socket.io": "^2.3.0",
"valid-url": "^1.0.9",
"validator": "^12.0.0",
"zeromq": "^5.1.0"
},
"devDependencies": {
"documentation": "^12.1.2",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.2",
"onchange": "^6.0.0",
"prettier": "^1.18.2"
}
}