|
| 1 | +{ |
| 2 | + "name": "typescript-api", |
| 3 | + "description": "Skeleton project for easy extendable TypeScript APIs.", |
| 4 | + "version": "0.0.0", |
| 5 | + "author": { |
| 6 | + "name": "Pascal Iske", |
| 7 | + "email": "info@pascal-iske.de", |
| 8 | + "url": "https://pascal-iske.de" |
| 9 | + }, |
| 10 | + "license": "MIT", |
| 11 | + "scripts": { |
| 12 | + "start": "node dist/index.js", |
| 13 | + "build": "tsc -p tsconfig.json", |
| 14 | + "watch": "nodemon --exec \"yarn run build && yarn run start\" --watch src --ext ts", |
| 15 | + "lint": "tslint -p tsconfig.json --fix", |
| 16 | + "test": "ava dist/**/*.test.js", |
| 17 | + "format": "prettier --write \"**/*.{ts,md}\"", |
| 18 | + "precommit": "lint-staged" |
| 19 | + }, |
| 20 | + "repository": { |
| 21 | + "url": "https://github.com/pascaliske/typescript-api.git", |
| 22 | + "type": "git" |
| 23 | + }, |
| 24 | + "bugs": { |
| 25 | + "url": "https://github.com/pascaliske/typescript-api/issues" |
| 26 | + }, |
| 27 | + "private": true, |
| 28 | + "lint-staged": { |
| 29 | + "**/*.md": [ |
| 30 | + "prettier --write", |
| 31 | + "git add" |
| 32 | + ], |
| 33 | + "**/*.ts": [ |
| 34 | + "tslint -p tsconfig.json --fix", |
| 35 | + "prettier --write", |
| 36 | + "git add" |
| 37 | + ] |
| 38 | + }, |
| 39 | + "dependencies": { |
| 40 | + "compression": "^1.7.2", |
| 41 | + "config": "^1.30.0", |
| 42 | + "cors": "^2.8.4", |
| 43 | + "express": "^4.16.3", |
| 44 | + "helmet": "^3.12.1", |
| 45 | + "morgan": "^1.9.0", |
| 46 | + "mysql": "^2.15.0", |
| 47 | + "nodemon": "^1.17.5", |
| 48 | + "routing-controllers": "^0.7.7", |
| 49 | + "socket-controllers": "^0.0.3", |
| 50 | + "socket.io": "^2.1.1", |
| 51 | + "typedi": "^0.7.3", |
| 52 | + "typeorm": "^0.2.7", |
| 53 | + "typeorm-routing-controllers-extensions": "^0.2.0", |
| 54 | + "typeorm-typedi-extensions": "^0.2.1", |
| 55 | + "winston": "^3.0.0" |
| 56 | + }, |
| 57 | + "devDependencies": { |
| 58 | + "@types/body-parser": "^1.17.0", |
| 59 | + "@types/compression": "^0.0.36", |
| 60 | + "@types/config": "^0.0.34", |
| 61 | + "@types/cors": "^2.8.4", |
| 62 | + "@types/express": "^4.16.0", |
| 63 | + "@types/helmet": "^0.0.38", |
| 64 | + "@types/morgan": "^1.7.35", |
| 65 | + "@types/node": "^10.3.4", |
| 66 | + "@types/socket.io": "^1.4.36", |
| 67 | + "@types/supertest": "^2.0.4", |
| 68 | + "ava": "^0.25.0", |
| 69 | + "husky": "^0.14.3", |
| 70 | + "lint-staged": "^7.2.0", |
| 71 | + "prettier": "^1.13.5", |
| 72 | + "reflect-metadata": "^0.1.12", |
| 73 | + "supertest": "^3.1.0", |
| 74 | + "tslint": "^5.10.0", |
| 75 | + "tslint-config-prettier": "^1.13.0", |
| 76 | + "typedoc": "^0.11.1", |
| 77 | + "typescript": "^2.9.2" |
| 78 | + } |
| 79 | +} |
0 commit comments