forked from 4everland/official-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "4everland-official-website",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env process.env.NODE_ENV=development nuxt",
"test": "cross-env process.env.NODE_ENV=test nuxt",
"mock": "cross-env process.env.NODE_ENV=mock nuxt",
"build": "cross-env process.env.NODE_ENV=production nuxt build",
"start": "nuxt start",
"generate": "cross-env process.env.NODE_ENV=production nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": 3000
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@mdi/js": "^5.9.55",
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/pwa": "^3.3.5",
"bignumber.js": "^9.0.1",
"clipboard-polyfill": "^3.0.3",
"core-js": "^3.15.2",
"dotenv": "^10.0.0",
"echarts": "^5.1.2",
"ethers": "^5.5.4",
"globe.gl": "^2.26.2",
"nuxt": "^2.15.8",
"swiper": "^5.2.0",
"three-globe": "^2.24.6",
"vue-awesome-swiper": "^4.1.1",
"vuetify-dialog": "^2.0.16",
"vuetify-toast-snackbar": "^0.6.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.11.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.12.1",
"husky": "^4.3.8",
"less": "^4.1.1",
"less-loader": "^7.3.0",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"vue-happy-scroll": "^2.1.1"
}
}