-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "cms",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"dev:docker": "docker-compose -f development.docker-compose.yml up --build",
"build": "nuxt build",
"start": "nuxt start",
"export": "nuxt export",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "yarn lint:js --fix && yarn lint:style --fix",
"sync_dev": "./scripts/sync_dev.sh",
"fix": "node ./scripts/fix.js"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.11.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/toast": "^3.3.1",
"@tui-nuxt/editor": "^1.0.0-beta.3",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"correios-brasil": "^2.2.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongoose": "^5.9.25",
"mongoose-autopopulate": "^0.15.0",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.2",
"node-wget": "^0.4.3",
"nuxt": "^2.13.0",
"nuxt-i18n": "^6.13.1",
"nuxt-leaflet": "^0.0.21",
"nuxt-validate": "^1.0.1",
"nuxt-vue-select": "^0.1.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pdf-image": "^2.0.0",
"sharp": "^0.25.4",
"slugify": "^1.4.4",
"v-calendar": "^1.0.8",
"v-money": "^0.8.1",
"vue-easy-lightbox": "^0.16.1",
"vue-goodshare": "^1.5.1",
"vue-quill-editor": "^3.0.6",
"vue-scrollto": "^2.18.1",
"vue-the-mask": "^0.11.1",
"vue2-datepicker": "^3.8.1",
"vue2-filters": "^0.11.0",
"vuedraggable": "^2.24.3",
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.0",
"@fortawesome/free-solid-svg-icons": "^5.15.0",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-plugin-nuxt": "^1.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0"
}
}