2019-02-07 16:26:17 +08:00
|
|
|
{
|
|
|
|
"name": "blog-client",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "My Blog Client",
|
|
|
|
"author": "yi-ge",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
|
|
|
|
"build": "nuxt build",
|
2019-03-04 23:02:10 +08:00
|
|
|
"start": "cross-env NODE_ENV=production HOST=0.0.0.0 PORT=80 node server/index.js",
|
2019-02-07 16:26:17 +08:00
|
|
|
"generate": "nuxt generate",
|
|
|
|
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
|
|
|
|
"precommit": "npm run lint"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-03-04 23:02:10 +08:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.15",
|
|
|
|
"@fortawesome/free-brands-svg-icons": "^5.7.2",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "^5.7.2",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.7.2",
|
2019-02-07 16:26:17 +08:00
|
|
|
"@fortawesome/vue-fontawesome": "^0.1.5",
|
2019-03-04 23:02:10 +08:00
|
|
|
"@nuxtjs/axios": "^5.4.0",
|
2019-02-07 16:26:17 +08:00
|
|
|
"cross-env": "^5.2.0",
|
2019-03-04 23:02:10 +08:00
|
|
|
"highlight.js": "^9.15.6",
|
|
|
|
"koa": "^2.7.0",
|
2019-02-07 16:26:17 +08:00
|
|
|
"moment": "^2.24.0",
|
2019-03-04 23:02:10 +08:00
|
|
|
"nuxt": "^2.4.5"
|
2019-02-07 16:26:17 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@nuxtjs/eslint-config": "^0.0.1",
|
2019-03-04 23:02:10 +08:00
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
"eslint": "^5.15.0",
|
2019-02-07 16:26:17 +08:00
|
|
|
"eslint-config-standard": ">=12.0.0",
|
2019-03-04 23:02:10 +08:00
|
|
|
"eslint-loader": "^2.1.2",
|
|
|
|
"eslint-plugin-import": ">=2.16.0",
|
|
|
|
"eslint-plugin-jest": "^22.3.0",
|
|
|
|
"eslint-plugin-node": ">=8.0.1",
|
2019-02-07 16:26:17 +08:00
|
|
|
"eslint-plugin-promise": ">=4.0.1",
|
|
|
|
"eslint-plugin-standard": ">=4.0.0",
|
2019-03-04 23:02:10 +08:00
|
|
|
"eslint-plugin-vue": "^5.2.2",
|
|
|
|
"nodemon": "^1.18.10",
|
2019-02-07 16:26:17 +08:00
|
|
|
"pug": "^2.0.3",
|
|
|
|
"pug-plain-loader": "^1.0.0",
|
|
|
|
"stylus": "^0.54.5",
|
|
|
|
"stylus-loader": "^3.0.2"
|
|
|
|
}
|
|
|
|
}
|