river-of-ebooks/package.json

97 lines
2.7 KiB
JSON
Raw Normal View History

2018-10-16 01:45:37 +00:00
{
"name": "roe-base",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
2019-02-04 19:22:20 +00:00
"scripts": {
"start": "npm-run-all --parallel open:client lift",
"start:debug": "npm-run-all --parallel open:client debug",
"start:prod": "npm-run-all --parallel build:prod lift",
"open:client": "webpack-dev-server --mode development",
"build": "npm run build:prod",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"clean": "rimraf .tmp && mkdirp .tmp/public",
"lift": "sails lift",
"forever": "sudo ./node_modules/.bin/pm2 start ecosystem.config.js --env production",
"stop": "sudo ./node_modules/.bin/pm2 delete roe-base",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "standard && echo '✔ Your .js files look good.'",
"debug": "node --inspect app.js",
"custom-tests": "echo 'Nothing yet'",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback"
},
2018-10-16 01:45:37 +00:00
"dependencies": {
"@sailshq/connect-redis": "^3.2.1",
"@sailshq/lodash": "^3.10.3",
2018-10-24 03:33:04 +00:00
"@sailshq/socket.io-redis": "^5.2.0",
"async": "2.0.1",
2018-11-02 00:21:36 +00:00
"base64url": "^3.0.0",
"bcrypt": "^3.0.2",
2018-11-13 22:33:52 +00:00
"chai": "^4.2.0",
2018-11-20 00:12:11 +00:00
"eslint-plugin-react": "^7.11.1",
2018-10-24 03:33:04 +00:00
"express-rate-limit": "^3.2.1",
"grunt": "^1.0.3",
2018-11-19 19:57:48 +00:00
"knex": "^0.15.2",
2018-11-02 00:21:36 +00:00
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
2018-11-12 22:28:20 +00:00
"pm2": "^3.2.2",
2018-10-28 20:42:38 +00:00
"react": "^16.6.0",
"react-dom": "^16.6.0",
2018-10-24 03:33:04 +00:00
"sails": "^1.0.2",
"sails-hook-grunt": "^3.0.2",
"sails-hook-orm": "^2.1.1",
2018-11-12 22:12:16 +00:00
"sails-hook-sockets": "^1.4.0"
2018-10-16 01:45:37 +00:00
},
"devDependencies": {
2018-10-28 20:42:38 +00:00
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
2018-10-29 23:23:37 +00:00
"@babel/polyfill": "^7.0.0",
2018-10-28 20:42:38 +00:00
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
2018-11-20 00:29:29 +00:00
"babel-eslint": "^10.0.1",
2018-10-28 20:42:38 +00:00
"babel-loader": "^8.0.4",
2018-10-29 19:31:00 +00:00
"css-loader": "^1.0.1",
2018-10-28 20:42:38 +00:00
"html-webpack-plugin": "^3.2.0",
2018-10-29 19:31:00 +00:00
"mini-css-extract-plugin": "^0.4.4",
2018-10-30 00:03:47 +00:00
"mocha": "^5.2.0",
2018-10-29 19:31:00 +00:00
"node-sass": "^4.9.4",
2018-10-28 20:42:38 +00:00
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
2018-10-29 19:31:00 +00:00
"sass-loader": "^7.1.0",
2018-11-20 00:12:11 +00:00
"standard": "^12.0.1",
2018-10-29 19:31:00 +00:00
"style-loader": "^0.23.1",
2018-10-28 20:42:38 +00:00
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
2018-10-16 01:45:37 +00:00
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/vagrant/roe-base.git"
},
"author": "vagrant",
"license": "",
"engines": {
"node": ">=8.10"
2018-11-02 00:21:36 +00:00
},
"standard": {
"globals": [
2018-11-07 20:27:07 +00:00
"sails",
"User",
"Book",
"Passport",
2018-11-15 03:51:29 +00:00
"TargetUrl",
2018-11-07 20:27:07 +00:00
"_"
],
2018-11-13 22:33:52 +00:00
"env": [
"mocha"
2018-11-20 00:26:30 +00:00
],
"parser": "babel-eslint"
2018-10-16 01:45:37 +00:00
}
}