first
parents
Showing
.dockerignore
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
Dockerfile
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
__tests__/app.test.ts
0 → 100644
bin/www
0 → 100755
jest.config.js
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | ||
| "name": "avatar-handler", | ||
| "version": "1.0.0", | ||
| "private": true, | ||
| "bin": { | ||
| "server": "bin/wwww" | ||
| }, | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "start": "node ./bin/www", | ||
| "serve": "npm run build && npm start", | ||
| "build": "npm run build:ts", | ||
| "build:ts": "tsc", | ||
| "watch:ts": "tsc -w", | ||
| "watch:node": "nodemon ./bin/www", | ||
| "dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run watch:node\"", | ||
| "lint": "tslint --project \"tsconfig.json\"", | ||
| "test": "jest", | ||
| "test:watch": "npm run test -- --watchAll", | ||
| "test:coverage": "npm run test -- --coverage" | ||
| }, | ||
| "dependencies": { | ||
| "cookie-parser": "~1.4.4", | ||
| "debug": "~2.6.9", | ||
| "express": "~4.16.1", | ||
| "morgan": "^1.9.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/cookie-parser": "^1.4.2", | ||
| "@types/express": "^4.17.6", | ||
| "@types/jest": "^25.2.3", | ||
| "@types/morgan": "^1.9.0", | ||
| "@types/node": "^14.0.9", | ||
| "@types/supertest": "^2.0.9", | ||
| "concurrently": "^5.2.0", | ||
| "jest": "^26.0.1", | ||
| "nodemon": "^2.0.4", | ||
| "supertest": "^4.0.2", | ||
| "ts-jest": "^26.1.0", | ||
| "tsc": "^1.20150623.0", | ||
| "tslint": "^6.1.2", | ||
| "typescript": "^3.9.3" | ||
| } | ||
| } |
src/app.ts
0 → 100644
src/config.ts
0 → 100644
tsconfig.json
0 → 100644
tslint.json
0 → 100644
Please register or sign in to comment