-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "cetdac-web",
"version": "1.0.0",
"description": "My doozie Nuxt.js project",
"author": "AlanGuo",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"pm2": "pm2 startOrRestart ecosystem.json --env production",
"pm2-pre": "pm2 startOrRestart ecosystem.json --env pre",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/axios": "^5.5.4",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.23",
"chinese-s2t": "^1.0.0",
"countup.js": "^2.0.4",
"cross-env": "^5.2.0",
"iost": "0.0.18",
"koa": "^2.6.2",
"koa-compress": "^3.0.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"node-sass": "^4.12.0",
"nuxt": "^2.0.0",
"sass-loader": "^7.1.0",
"viai18n-loader": "^0.0.32",
"vue-countup-v2": "^4.0.0"
},
"devDependencies": {
"nodemon": "^1.18.9"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3002"
}
}
}