| 1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "chain4all",
- "version": "1.0.0",
- "description": "",
- "main": "app.js",
- "type": "module",
- "scripts": {
- "dev": "nodemon app.js",
- "start": "node app.js"
- },
- "author": "Daniel Kunický",
- "license": "ISC",
- "dependencies": {
- "body-parser": "^1.19.1",
- "dotenv": "^14.2.0",
- "express": "^4.17.2",
- "express-basic-auth": "^1.2.1",
- "grpc": "^1.24.11",
- "iroha-helpers": "^1.3.0"
- },
- "devDependencies": {
- "nodemon": "^2.0.15"
- },
- "nodemonConfig": {
- "ext": "js",
- "ignore": [
- "*.test.ts",
- "db/*"
- ],
- "delay": 2
- }
- }
|