-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 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
{
"name": "mawatech",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server --watch api",
"build": "nuxt build",
"e2e": "cypress open",
"e2e-run": "cypress run",
"start:e2e": "server-test dev 3000 e2e",
"test:e2e": "server-test dev 3000 e2e-run",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"bootstrap-vue": "^2.21.2",
"countup.js": "^2.0.7",
"cross-env": "^7.0.3",
"date-fns": "^2.21.3",
"diacritics": "^1.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"mongoose": "^5.12.9",
"multer": "^1.4.2",
"node-sass": "^5.0.0",
"nodemailer": "^6.6.0",
"nodemailer-express-handlebars": "^4.0.0",
"nuxt": "^2.15.6",
"nuxt-i18n": "^6.27.0",
"nuxt-lazy-load": "^1.2.6",
"sass-loader": "^10.1.1",
"sharp": "^0.27.2",
"vee-validate": "^3.4.5",
"vue-countup-v2": "^4.0.0",
"vue-observe-visibility": "^1.0.0",
"vue2-smooth-scroll": "^1.5.0"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@vue/test-utils": "^1.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cypress": "^7.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"start-server-and-test": "^1.12.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"vue-jest": "^3.0.4"
}
}