forked from ITCNZ/Nuxt-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
44
45
46
47
48
49
50
{
"name": "mynuxt",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "zhouhaipeng <[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": 3389
}
},
"dependencies": {
"axios": "^0.16.2",
"cookie-parser": "^1.4.3",
"element-ui": "^2.2.1",
"express": "^4.15.5",
"express-session": "^1.15.6",
"gt3-sdk": "^2.0.0",
"js-cookie": "^2.2.0",
"mongoose": "^4.11.13",
"multer": "^1.3.0",
"nuxt": "^1.4.0",
"request": "^2.83.0",
"vue-notification": "^1.3.7",
"vue-quill-editor": "^3.0.5"
},
"devDependencies": {
"@nuxtjs/axios": "^5.1.1",
"@nuxtjs/proxy": "^1.1.4",
"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",
"moment": "^2.18.1",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"vue-style-loader": "^4.1.0"
}
}