-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
52
53
54
55
56
57
58
{
"name": "nuxt-demo",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Sebastián Barrenechea <[email protected]>",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "8080"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/axios": "^4.5.2",
"axios": "^0.18.0",
"jquery": "^3.2.1",
"js-cookie": "^2.2.0",
"jwt-decode": "^2.2.0",
"moment": "^2.19.2",
"numeral": "^2.0.6",
"nuxt": "^1.0.0-rc11",
"sweetalert2": "^7.0.0",
"vee-validate": "^2.0.0-rc.25",
"velocity-animate": "^1.5.0",
"vue-awesome": "^2.3.4",
"vue-carousel": "^0.6.5",
"vue-croppa": "^1.1.3",
"vue-input-tag": "0.0.16",
"vue-lazyload": "^1.1.4",
"vue-scrollto": "^2.8.0",
"vue-social-sharing": "^2.2.10",
"vue-star-rating": "^1.5.1",
"vue-swiper": "^0.5.0",
"vue-truncate-collapsed": "^1.1.2",
"vue2-google-maps": "^0.7.10",
"vue2-notify": "^1.3.0",
"vuejs-datepicker": "^0.9.20"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}