-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
56
57
58
{
"name": "inventory-manager",
"version": "1.0.0",
"description": "The inventory manager is a server implementation for community currency issuers",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js --ENV LOCAL",
"build": "npm install",
"lint": "./node_modules/.bin/standard",
"test": "./node_modules/.bin/truffle test --ENV=TEST",
"apidocs": "node_modules/apidoc/bin/apidoc -i app/ -o docs/",
"cycle": "npm run lint && npm run test && npm run apidocs"
},
"author": "LiorRabin",
"license": "MIT",
"dependencies": {
"@colucom/osseus": "~2.3.1",
"@colucom/osseus-logger": "~0.5.1",
"@colucom/osseus-mongo": "~0.3.1",
"@colucom/osseus-router": "~0.4.1",
"@colucom/osseus-server": "~0.2.1",
"agenda": "^2.0.2",
"async": "^2.6.1",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"bip39": "^2.5.0",
"cln-solidity": "github:ColuLocalNetwork/CLN-solidity",
"mongoose-paginate": "^5.0.3",
"mongoose-time": "^0.1.0",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "github:ColuLocalNetwork/truffle-hdwallet-provider",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.36",
"web3-eth-abi": "^1.0.0-beta.36"
},
"devDependencies": {
"apidoc": "^0.17.6",
"bluebird": "^3.5.2",
"ganache-cli": "^6.1.8",
"standard": "^11.0.1",
"truffle": "^4.1.14"
},
"standard": {
"ignore": [
"/docs/*",
"/migrations/*",
"/test/*"
]
},
"apidoc": {
"title": "Inventory Manager API",
"header": {
"title": "README",
"filename": "README.md"
}
}
}