-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
49
50
51
{
"name": "cosmos-blog",
"version": "1.0.0",
"description": "My blog",
"author": "you06",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env DISABLE_BASE_URL=1 nuxt build",
"start": "cross-env NODE_ENV=production pm2 start server/index.js --name cosmos-blog",
"stop": "pm2 stop cosmos-blog",
"monit": "pm2 monit",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "ava"
},
"dependencies": {
"@nuxtjs/auth": "^4.8.4",
"@nuxtjs/axios": "you06/axios-module#disable-baseurl",
"@nuxtjs/style-resources": "^1.0.0",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"highlight.js": "^9.15.10",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"marked": "^0.7.0",
"nuxt": "^2.0.0",
"nuxt-buefy": "^0.3.15",
"pm2": "^3.5.1",
"sha.js": "^2.4.11",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-icon": "^2.1.1"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"ava": "^2.2.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.5",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"nodemon": "^1.18.9",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0"
}
}