mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 20:00:33 +00:00
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "moosher-server",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"start": "npm-run-all --parallel watch:server watch:build",
|
|
"watch:build": "webpack --watch",
|
|
"watch:server": "nodemon --inspect=\"9229\" \"./dist/bundle.js\" --watch \"./dist\" ",
|
|
"test": "cross-env NODE_ENV=test mocha-webpack --webpack-config webpack.config.js \"tests/**/*.test.js\"",
|
|
"test:watch": "cross-env NODE_ENV=test mocha-webpack --watch --webpack-config webpack.config.js --timeout=30000 tests/**/*.test.js"
|
|
},
|
|
"author": "Ahmed Bouhuolia, <a.bouhuolia@gmail.com>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@hapi/boom": "^7.4.3",
|
|
"bcryptjs": "^2.4.3",
|
|
"bookshelf": "^0.15.1",
|
|
"bookshelf-cascade-delete": "^2.0.1",
|
|
"bookshelf-json-columns": "^2.1.1",
|
|
"bookshelf-modelbase": "^2.10.4",
|
|
"bookshelf-paranoia": "^0.13.1",
|
|
"dotenv": "^8.1.0",
|
|
"errorhandler": "^1.5.1",
|
|
"express": "^4.17.1",
|
|
"express-boom": "^3.0.0",
|
|
"express-oauth-server": "^2.0.0",
|
|
"express-validator": "^6.2.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"knex": "^0.19.2",
|
|
"lodash": "^4.17.15",
|
|
"memory-cache": "^0.2.0",
|
|
"moment": "^2.24.0",
|
|
"mustache": "^3.0.3",
|
|
"mysql2": "^1.6.5",
|
|
"nodemailer": "^6.3.0",
|
|
"nodemon": "^1.19.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.5",
|
|
"@babel/plugin-transform-runtime": "^7.5.5",
|
|
"@babel/polyfill": "^7.4.4",
|
|
"@babel/preset-env": "^7.5.5",
|
|
"@babel/runtime": "^7.5.5",
|
|
"babel-loader": "^8.0.6",
|
|
"chai": "^4.2.0",
|
|
"chai-http": "^4.3.0",
|
|
"chai-things": "^0.2.0",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^6.2.1",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-friendly-formatter": "^4.0.1",
|
|
"eslint-import-resolver-webpack": "^0.11.1",
|
|
"eslint-loader": "^2.2.1",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"faker": "^4.1.0",
|
|
"knex-factory": "0.0.6",
|
|
"mocha": "^5.2.0",
|
|
"mocha-webpack": "^2.0.0-beta.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^14.1.1",
|
|
"sinon": "^7.4.2",
|
|
"webpack": "^4.0.0",
|
|
"webpack-cli": "^3.3.7",
|
|
"webpack-node-externals": "^1.7.2"
|
|
}
|
|
}
|