Nuxt/examples/with-featherjs/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2017-01-11 19:13:38 +00:00
{
"name": "with-featherjs",
"description": "Nuxt.js with FeatherJS",
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",
"dev": "DEBUG=nuxt:* node src/",
"build": "nuxt build",
"start": "NODE_ENV=production node src/",
"mocha": "mocha test/ --recursive --timeout=30000"
},
"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",
2017-01-11 19:17:12 +00:00
"nuxt": "latest",
2017-01-11 19:13:38 +00:00
"passport": "^0.3.2",
"winston": "^2.3.0"
},
"devDependencies": {
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"request": "^2.79.0"
}
}