river-of-ebooks/package.json

72 lines
2.2 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": [],
"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",
"express-rate-limit": "^3.2.1",
2018-10-24 03:56:04 +00:00
"forever": "^0.15.3",
2018-10-24 03:33:04 +00:00
"grunt": "^1.0.3",
2018-10-31 03:28:02 +00:00
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-google-oauth20": "^1.0.0",
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",
"sails-hook-sockets": "^1.4.0"
2018-10-16 01:45:37 +00:00
},
"devDependencies": {
2018-10-30 00:00:03 +00:00
"@sailshq/eslint": "^4.19.3",
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",
"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",
"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",
"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
},
"scripts": {
"start": "npm run open:client",
2018-10-28 20:42:38 +00:00
"start:debug": "npm-run-all --parallel open:client debug",
"start:prod": "npm-run-all --parallel build:prod lift",
2018-10-28 20:42:38 +00:00
"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",
2018-10-29 23:56:18 +00:00
"forever": "sudo NODE_ENV='production' ./node_modules/.bin/forever start app.js",
2018-10-30 00:24:02 +00:00
"stop": "sudo ./node_modules/.bin/forever stopall",
2018-10-16 01:45:37 +00:00
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
2018-10-28 20:42:38 +00:00
"debug": "node --inspect app.js"
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"
}
}