Nuxt/examples/with-feathers/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2017-01-11 19:13:38 +00:00
{
2018-03-19 02:41:46 +00:00
"name": "example-with-feathers",
2017-01-11 19:23:43 +00:00
"description": "Nuxt.js with FeathersJS",
2017-01-11 19:17:12 +00:00
"version": "1.0.0",
2017-01-11 19:13:38 +00:00
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
2017-01-11 19:29:48 +00:00
"dev": "DEBUG=nuxt:* nodemon --watch src/ --watch config/ src/index.js",
2017-01-11 19:13:38 +00:00
"build": "nuxt build",
"start": "NODE_ENV=production node src/",
"mocha": "mocha test/ --recursive --timeout=30000",
"post-update": "yarn upgrade --latest"
2017-01-11 19:13:38 +00:00
},
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.8.1",
"feathers": "^2.0.3",
"feathers-authentication": "^0.7.12",
"feathers-configuration": "^0.3.3",
"feathers-errors": "^2.5.0",
"feathers-hooks": "^1.7.1",
"feathers-nedb": "^2.6.0",
"feathers-rest": "^1.6.0",
"feathers-socketio": "^1.4.2",
"nedb": "^1.8.0",
"nuxt": "latest",
2017-01-11 19:13:38 +00:00
"passport": "^0.3.2",
"winston": "^2.3.0"
},
"devDependencies": {
2017-10-31 13:43:55 +00:00
"eslint-plugin-mocha": "^4.11.0",
2017-01-11 19:13:38 +00:00
"jshint": "^2.9.4",
"mocha": "^3.2.0",
2017-01-11 19:29:48 +00:00
"nodemon": "^1.11.0",
2017-01-11 19:13:38 +00:00
"request": "^2.79.0"
}
}