mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "with-feathers",
|
|
"description": "Nuxt.js with FeathersJS",
|
|
"version": "1.0.0",
|
|
"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:* nodemon --watch src/ --watch config/ src/index.js",
|
|
"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",
|
|
"nuxt": "latest",
|
|
"passport": "^0.3.2",
|
|
"winston": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"jshint": "^2.9.4",
|
|
"mocha": "^3.2.0",
|
|
"nodemon": "^1.11.0",
|
|
"request": "^2.79.0"
|
|
}
|
|
}
|