UNPKG

arrow-express

Version:

Library to bootstrap express applications with zero configuration

38 lines (37 loc) 974 B
{ "name": "arrow-express-example-server", "version": "1.0.0", "description": "Example application", "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "./node_modules/.bin/eslint .", "start:dev": "ts-node-dev --poll --respawn src/index.ts" }, "author": "", "license": "ISC", "dependencies": { "arrow-express": "../", "compression": "^1.7.4", "cors": "^2.8.5", "express": "^4.17.1", "path": "^0.12.7" }, "devDependencies": { "@types/compression": "^1.7.0", "@types/cors": "^2.8.9", "@types/express": "^4.17.11", "@types/jest": "^26.0.20", "@types/node": "^14.14.21", "@typescript-eslint/eslint-plugin": "^4.13.0", "@typescript-eslint/parser": "^4.13.0", "eslint": "^7.18.0", "jest": "^26.6.3", "ts-jest": "^26.4.4", "ts-node": "^9.1.1", "ts-node-dev": "^1.1.1", "typescript": "^4.1.3" } }