nuxt-start

This commit is contained in:
Pooya Parsa 2017-06-21 21:02:57 +04:30
parent 6a562e1fe7
commit 39ee66c6e5
5 changed files with 94 additions and 0 deletions

View File

@ -23,6 +23,7 @@
"files": [
"bin",
"dist",
"lib",
"index.d.ts",
"index.js"
],

3
start/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
bin
dist
lib

3
start/README.md Normal file
View File

@ -0,0 +1,3 @@
# Nuxt-Start
Runtime Only Build

16
start/index.js Normal file
View File

@ -0,0 +1,16 @@
/*!
* Nuxt.js
* (c) 2016-2017 Chopin Brothers
* Core maintainer: Pooya (@pi0)
* Released under the MIT License.
*/
// Node Source Map Support
// https://github.com/evanw/node-source-map-support
require('source-map-support').install();
// Fix babel flag
/* istanbul ignore else */
process.noDeprecation = true
module.exports = require('./dist/core')

71
start/package.json Normal file
View File

@ -0,0 +1,71 @@
{
"name": "nuxt-start",
"version": "0.0.0",
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
}
],
"main": "./index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js"
},
"files": [
"bin",
"dist",
"lib",
"index.js"
],
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"vue",
"vue.js",
"vuejs",
"vue universal",
"vue ssr",
"vue isomorphic",
"vue versatile"
],
"homepage": "https://github.com/nuxt/nuxt.js/start#readme",
"bin": {
"nuxt": "./bin/nuxt"
},
"scripts": {
"build": "rm -rf bin/* dist/* lib/* && cd .. && npm run build && cp -r bin dist lib start",
"prepublish": "npm run build"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10",
"npm": ">=3.0.0"
},
"dependencies": {
"ansi-html": "^0.0.7",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"connect": "^3.6.2",
"debug": "^2.6.8",
"etag": "^1.8.0",
"fresh": "^0.5.0",
"fs-extra": "^3.0.1",
"hash-sum": "^1.0.2",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"pify": "^3.0.0",
"serialize-javascript": "^1.3.0",
"serve-static": "^1.12.3",
"source-map-support": "^0.4.15",
"tappable": "^1.0.1",
"vue-server-renderer": "~2.3.4"
}
}