| 1234567891011121314151617181920212223242526 |
- {
- "name": "chain4all",
- "version": "1.0.0",
- "description": "",
- "main": "app.js",
- "scripts": {
- "dev": "nodemon app.js",
- "start": "node app.js"
- },
- "author": "Daniel Kunický",
- "license": "ISC",
- "dependencies": {
- "express": "^4.17.2"
- },
- "devDependencies": {
- "nodemon": "^2.0.15"
- },
- "nodemonConfig": {
- "ext": "js",
- "ignore": [
- "*.test.ts",
- "db/*"
- ],
- "delay": 2
- }
- }
|