1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "backend",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "dependencies": {
- "bcryptjs": "^2.4.3",
- "body-parser": "^1.18.3",
- "cookie-parser": "^1.4.4",
- "cors": "^2.8.5",
- "crypto": "^1.0.1",
- "dotenv": "^7.0.0",
- "express-fileupload": "^1.1.4",
- "graphql-yoga": "^1.17.4",
- "jsonwebtoken": "^8.5.1",
- "lodash": "^4.17.11",
- "mkdirp": "^0.5.1",
- "multer": "^1.4.1",
- "pdf-extract": "^1.0.11",
- "prisma": "^1.30.1",
- "prisma-binding": "^2.3.10",
- "prisma-client-lib": "^1.30.1",
- "python-shell": "^1.0.7",
- "semaphore-async-await": "^1.5.1",
- "shortid": "^2.2.14",
- "standard": "^12.0.1"
- },
- "devDependencies": {
- "babel-jest": "^24.8.0",
- "jest": "^24.8.0",
- "jest-transform-graphql": "^2.1.0",
- "graphql-cli": "^3.0.11",
- "nodemon": "^1.18.11"
- },
- "scripts": {
- "start": "nodemon -e js,graphql -x node index.js",
- "dev": "nodemon -e js,graphql -x node --inspect index.js",
- "test": "NODE_ENV=test jest --watch",
- "deploy": "prisma deploy"
- },
- "jest": {
- "testPathIgnorePatterns": [
- "<rootDir>/node_modules/"
- ],
- "transform": {
- "\\.(gql|graphql)$": "jest-transform-graphql",
- ".*": "babel-jest"
- }
- },
- "keywords": [],
- "author": "",
- "license": "ISC"
- }
|