|
| 1 | +{ |
| 2 | + "name": "nodets-bootstrap", |
| 3 | + "version": "1.0.0", |
| 4 | + "main": "src/index.js", |
| 5 | + "repository": "https://github.com/codingwithmanny/nodets-base", |
| 6 | + "author": "@codingwithmanny", |
| 7 | + "license": "MIT", |
| 8 | + "scripts": { |
| 9 | + "commit": "git-cz", |
| 10 | + "build": "tsc", |
| 11 | + "dev": "ts-node-dev src/server.ts", |
| 12 | + "start": "export NODE_ENV=production && tsc && node build/server.js", |
| 13 | + "test": "yarn test:lint && yarn test:coverage", |
| 14 | + "test:jest": "./node_modules/.bin/jest --watch", |
| 15 | + "test:coverage": "./node_modules/.bin/jest --coverage", |
| 16 | + "test:lint": "./node_modules/.bin/eslint '*/**/*.{js,ts}' --quiet --fix", |
| 17 | + "db:save": "./node_modules/.bin/prisma migrate save --experimental", |
| 18 | + "db:seed:gen": "cp ./prisma/seedings/TemplateSeeder.ts.example ./prisma/seedings/NEW.ts", |
| 19 | + "db:seed:all": "./node_modules/.bin/ts-node-dev ./prisma/seedings/index.ts", |
| 20 | + "db:gen": "./node_modules/.bin/prisma generate", |
| 21 | + "db:migrate": "./node_modules/.bin/prisma migrate up --experimental", |
| 22 | + "db:rollback": "./node_modules/.bin/prisma migrate down --experimental" |
| 23 | + }, |
| 24 | + "dependencies": { |
| 25 | + "@prisma/client": "^2.1.3", |
| 26 | + "axios": "^0.19.2", |
| 27 | + "bcrypt": "^5.0.0", |
| 28 | + "cookie-parser": "^1.4.5", |
| 29 | + "cors": "^2.8.5", |
| 30 | + "csurf": "^1.11.0", |
| 31 | + "dotenv": "^8.2.0", |
| 32 | + "express": "^4.17.1", |
| 33 | + "express-validator": "^6.6.0", |
| 34 | + "form-data": "^3.0.0", |
| 35 | + "helmet": "^3.23.3", |
| 36 | + "http-errors": "^1.8.0", |
| 37 | + "jsonwebtoken": "^8.5.1", |
| 38 | + "jwt-decode": "^2.2.0", |
| 39 | + "rand-token": "^1.0.1", |
| 40 | + "typescript": "^3.9.6" |
| 41 | + }, |
| 42 | + "config": { |
| 43 | + "commitizen": { |
| 44 | + "path": "cz-conventional-changelog" |
| 45 | + } |
| 46 | + }, |
| 47 | + "devDependencies": { |
| 48 | + "@commitlint/cli": "^9.0.1", |
| 49 | + "@commitlint/config-conventional": "^9.0.1", |
| 50 | + "@prisma/cli": "^2.1.3", |
| 51 | + "@types/axios": "^0.14.0", |
| 52 | + "@types/bcrypt": "^3.0.0", |
| 53 | + "@types/cookie-parser": "^1.4.2", |
| 54 | + "@types/cors": "^2.8.6", |
| 55 | + "@types/csurf": "^1.9.36", |
| 56 | + "@types/express": "^4.17.6", |
| 57 | + "@types/faker": "^4.1.12", |
| 58 | + "@types/helmet": "^0.0.47", |
| 59 | + "@types/http-errors": "^1.6.3", |
| 60 | + "@types/jest": "^26.0.3", |
| 61 | + "@types/jsonwebtoken": "^8.5.0", |
| 62 | + "@types/jwt-decode": "^2.2.1", |
| 63 | + "@types/node": "^14.0.14", |
| 64 | + "@typescript-eslint/eslint-plugin": "^3.5.0", |
| 65 | + "@typescript-eslint/parser": "^3.5.0", |
| 66 | + "eslint": "^7.3.1", |
| 67 | + "eslint-config-prettier": "^6.11.0", |
| 68 | + "eslint-plugin-jest": "^23.17.1", |
| 69 | + "eslint-plugin-prettier": "^3.1.4", |
| 70 | + "faker": "^4.1.0", |
| 71 | + "husky": "^4.2.5", |
| 72 | + "jest": "^26.1.0", |
| 73 | + "lint-staged": "^10.2.11", |
| 74 | + "prettier": "^2.0.5", |
| 75 | + "ts-jest": "^26.1.1", |
| 76 | + "ts-node-dev": "^1.0.0-pre.50" |
| 77 | + } |
| 78 | +} |
0 commit comments