-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "nospider",
"version": "1.0.0",
"description": "nuxttest",
"author": "gongsongping",
"private": true,
"scripts": {
"node-version": "nvm use 8.10.0",
"dev": "nuxt",
"build": "nuxt build",
"build-check": "nuxt build --analyze",
"start": "node server.js",
"prod": "pm2 stop nospider&&npm run build&&pm2 start npm --max-memory-restart 100M --name nospider -- start",
"generate": "nuxt generate",
"server": "NODE_ENV=production&&node server.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"build:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt build",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy": "push-dir --dir=dist --branch=master --cleanup"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"bootstrap-vue": "^2.0.0-rc.2",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"jquery": "^3.3.1",
"jsdom": "^11.9.0",
"jsonfile": "^4.0.0",
"nuxt": "^1.0.0",
"url-parse": "^1.4.0",
"vue-infinite-loading": "^2.2.3"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.8.3",
"push-dir": "^0.4.1",
"sass-loader": "^6.0.7"
}
}