|
| 1 | +{ |
| 2 | + "name": "globalshare-blockchain-api", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Node JS Blockchain API", |
| 5 | + "author": "Will Olivera <[email protected]>", |
| 6 | + "main": "index.js", |
| 7 | + "engines": { |
| 8 | + "node": ">=8.10.0", |
| 9 | + "npm": ">=5.6.0", |
| 10 | + "yarn": ">=1.5.1" |
| 11 | + }, |
| 12 | + "scripts": { |
| 13 | + "start": "gulp serve", |
| 14 | + "build": "gulp", |
| 15 | + "copy": "gulp copy", |
| 16 | + "babel": "gulp babel", |
| 17 | + "lint": "esw *.js server config --color", |
| 18 | + "lint:watch": "yarn lint -- --watch", |
| 19 | + "beautify": "es-beautifier -u -c .eslintrc.js *.js server config", |
| 20 | + "precommit": "yarn lint && yarn test", |
| 21 | + "test": "cross-env NODE_ENV=test ./node_modules/.bin/jest server/tests", |
| 22 | + "test:watch": "jest --watch", |
| 23 | + "test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _jest -- --ui bdd --reporter spec --colors --compilers js:babel-core/register server/tests --recursive", |
| 24 | + "test:check-coverage": "yarn test:coverage && istanbul check-coverage", |
| 25 | + "report-coverage": "coveralls < ./coverage/lcov.info", |
| 26 | + "sequelize": "NODE_ENV=development ./node_modules/.bin/babel-node ./node_modules/.bin/sequelize", |
| 27 | + "db:migrate": "npm run sequelize db:migrate" |
| 28 | + }, |
| 29 | + "jest": { |
| 30 | + "automock": false, |
| 31 | + "bail": false, |
| 32 | + "verbose": false, |
| 33 | + "setupFiles": [], |
| 34 | + "testMatch": [ |
| 35 | + "**/Tests/**/*.js", |
| 36 | + "**/?(*.)(spec|test|integration).js?(x)" |
| 37 | + ], |
| 38 | + "testPathIgnorePatterns": [ |
| 39 | + "/node_modules/", |
| 40 | + "/coverage/", |
| 41 | + "/dist/" |
| 42 | + ], |
| 43 | + "testEnvironment": "node" |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "babel-core": "6.24.0", |
| 47 | + "babel-plugin-transform-runtime": "^6.23.0", |
| 48 | + "babel-register": "^6.26.0", |
| 49 | + "babel-runtime": "^6.26.0", |
| 50 | + "body-parser": "1.15.2", |
| 51 | + "compression": "1.6.2", |
| 52 | + "cookie-parser": "1.4.3", |
| 53 | + "cors": "2.8.1", |
| 54 | + "debug": "^2.4.5", |
| 55 | + "del": "^2.2.0", |
| 56 | + "dotenv-safe": "^4.0.3", |
| 57 | + "express": "4.14.0", |
| 58 | + "express-jwt": "5.1.0", |
| 59 | + "express-validation": "1.0.1", |
| 60 | + "express-winston": "2.1.2", |
| 61 | + "gulp": "3.9.0", |
| 62 | + "gulp-load-plugins": "^1.2.0", |
| 63 | + "helmet": "3.1.0", |
| 64 | + "http-status": "^0.2.0", |
| 65 | + "joi": "10.0.6", |
| 66 | + "jsonwebtoken": "7.1.9", |
| 67 | + "lodash": "4.17.10", |
| 68 | + "method-override": "^2.3.5", |
| 69 | + "morgan": "1.7.0", |
| 70 | + "mysql": "^2.13.0", |
| 71 | + "mysql2": "^1.6.1", |
| 72 | + "run-sequence": "^1.1.5", |
| 73 | + "sequelize": "4.38.0", |
| 74 | + "sequelize-cli": "^5.2.0", |
| 75 | + "supertest": "2.0.1", |
| 76 | + "supertest-as-promised": "4.0.2", |
| 77 | + "winston": "2.3.0" |
| 78 | + }, |
| 79 | + "devDependencies": { |
| 80 | + "babel-cli": "6.24.0", |
| 81 | + "babel-plugin-add-module-exports": "0.2.1", |
| 82 | + "babel-plugin-transform-object-rest-spread": "6.26.0", |
| 83 | + "babel-preset-es2015": "6.24.1", |
| 84 | + "babel-preset-stage-2": "6.18.0", |
| 85 | + "commitizen": "^2.9.2", |
| 86 | + "coveralls": "^2.11.6", |
| 87 | + "cross-env": "3.1.3", |
| 88 | + "eslint": "3.16.1", |
| 89 | + "eslint-config-airbnb-base": "7.1.0", |
| 90 | + "eslint-plugin-import": "1.16.0", |
| 91 | + "eslint-watch": "2.1.14", |
| 92 | + "gulp-babel": "6.1.2", |
| 93 | + "gulp-newer": "^1.1.0", |
| 94 | + "gulp-nodemon": "^2.0.6", |
| 95 | + "gulp-sourcemaps": "^1.6.0", |
| 96 | + "gulp-util": "^3.0.7", |
| 97 | + "husky": "^0.13.1", |
| 98 | + "istanbul": "1.1.0-alpha.1", |
| 99 | + "jest": "23.4.2" |
| 100 | + }, |
| 101 | + "babel": { |
| 102 | + "presets": [ |
| 103 | + "es2015", |
| 104 | + "stage-2" |
| 105 | + ], |
| 106 | + "plugins": [ |
| 107 | + "add-module-exports", |
| 108 | + "transform-object-rest-spread" |
| 109 | + ], |
| 110 | + "ignore": [ |
| 111 | + "build/yarn/**/*.js", |
| 112 | + "build/nodejs/**/*.js" |
| 113 | + ] |
| 114 | + } |
| 115 | +} |
0 commit comments