-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "nuxt",
"version": "1.0.0",
"description": "My supreme Nuxt.js project",
"author": "zhicaizhu123@126.com",
"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",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"axios": "^0.19.0",
"cross-env": "^5.2.0",
"element-ui": "^2.4.11",
"koa": "^2.6.2",
"marked": "^0.7.0",
"mavon-editor": "^2.7.7",
"mockjs": "^1.1.0",
"moment": "^2.24.0",
"nuxt": "^2.0.0"
},
"devDependencies": {
"@nuxtjs/axios": "^5.8.0",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/proxy": "^1.3.3",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.13.0",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.0",
"terser-webpack-plugin": "^2.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2"
}
}