This repository has been archived by the owner on Jun 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
46
47
48
{
"name": "quizlunch",
"version": "1.0.0",
"description": "My rad Nuxt.js project",
"author": "hchangjae",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"scripts": {
"dev": "cross-env HOST=0.0.0.0 PORT=3000 nuxt",
"dev-hcj": "cross-env HOST=0.0.0.0 PORT=3010 nuxt",
"dev-wsj": "cross-env HOST=0.0.0.0 PORT=3020 nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"start-dist": "npm run build && pm2 start npm --name 'web-dist' -- run start",
"stop-dist": "pm2 delete web-dist",
"restart-dist": "npm run stop-dist && npm run start-dist",
"start-dev": "pm2 start npm --name 'web-dev' -- run dev",
"stop-dev": "pm2 delete web-dev",
"restart-dev": "npm run stop-dev && npm run start-dev",
"start-dev-hcj": "pm2 start npm --name 'web-dev-hcj' -- run dev-hcj",
"stop-dev-hcj": "pm2 delete web-dev-hcj",
"restart-dev-hcj": "npm run stop-dev-hcj && npm run start-dev-hcj",
"start-dev-wsj": "pm2 start npm --name 'web-dev-wsj' -- run dev-wsj",
"stop-dev-wsj": "pm2 delete web-dev-wsj",
"restart-dev-wsj": "npm run stop-dev-wsj && npm run start-dev-wsj"
},
"dependencies": {
"axios": "^0.19.0",
"file-loader": "^4.2.0",
"node-sass": "^4.13.0",
"nuxt": "^2.0.0",
"sass-loader": "^8.0.0",
"url-loader": "^2.2.0",
"vue-infinite-scroll": "^2.0.2",
"vue-analytics": "^5.18.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@nuxtjs/google-analytics": "^2.2.1",
"cross-env": "^6.0.3"
}
}