This repository has been archived by the owner on Oct 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "Web portfolio",
"author": "Rodrigo Manuel Navarro Lajous",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"deploy": "./deploy.sh",
"generate": "nuxt generate",
"lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/preset-env": "^7.12.17",
"@nuxtjs/axios": "5.13.1",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/pwa": "3.3.5",
"@nuxtjs/sitemap": "2.4.0",
"cwebp": "^2.0.5",
"moralis": "0.0.21",
"nuxt": "3.12.4",
"vue-burger-menu": "2.0.5",
"vue-js-modal": "2.0.0-rc.6"
},
"devDependencies": {
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/color-mode": "^2.0.5",
"@nuxtjs/eslint-config": "3.1.0",
"@nuxtjs/eslint-module": "2.0.0",
"@nuxtjs/google-analytics": "2.4.0",
"@nuxtjs/stylelint-module": "4.0.0",
"@vue/test-utils": "1.0.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.1.0",
"concurrent-transform": "1.0.0",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-nuxt": "1.0.0",
"eslint-plugin-prettier": "3.1.4",
"gulp": "4.0.2",
"gulp-awspublish": "4.1.2",
"gulp-cloudfront-invalidate-aws-publish": "1.0.0",
"husky": "4.3.8",
"jest": "26.1.0",
"lint-staged": "10.5.4",
"node-sass": "4.14.1",
"prettier": "2.2.1",
"pug": "3.0.3",
"pug-plain-loader": "1.0.0",
"sass-loader": "9.0.3",
"stylelint": "13.13.1",
"vue-jest": "4.0.0-beta.4"
}
}