forked from Colored-Coins/coloredcoinsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 979 Bytes
/
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
{
"name": "ccoinsd",
"version": "2.5.2",
"author": "inbitcoin s.r.l.",
"description": "Abstraction for Colored Coins operations",
"main": "./app.js",
"keywords": [
"bitcoin",
"colored",
"coins",
"crypto",
"token"
],
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"@inbitcoin/cerrors": "git://github.com/inbitcoin/cerrors.git#0.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.19",
"loglevel": "^1.6.8",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier-eslint": "^11.0.0"
},
"scripts": {
"start": "node app.js",
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --ignore-path .gitignore --fix ."
}
}