-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "metagarden-landing",
"version": "1.0.0",
"description": " ",
"author": "shrpne <[email protected]>",
"private": true,
"type": "module",
"scripts": {
"prod": "npm run production",
"production": "npm run generate",
"dev": "gulp & nuxt --spa --port=3043 --hostname=localhost",
"build": "gulp once && nuxt build --spa",
"start": "nuxt start --spa --port=3043 --hostname=localhost",
"generate": "gulp once && nuxt generate",
"analyze": "gulp once && nuxt build --spa --analyze",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"test": "jest",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"dependencies": {
"@material/list": "^14.0.0",
"@material/menu": "^14.0.0",
"@nuxtjs/i18n": "^7.3.1",
"axios": "^1.4.0",
"axios-extensions": "^3.1.7",
"camelcase-keys": "^8.0.2",
"clipbrd": "^1.0.2",
"entity-decode": "^2.0.2",
"js-cookie": "^3.0.5",
"lite-youtube-embed": "^0.2.0",
"lodash-es": "^4.17.21",
"nuxt": "^2.16.3",
"nuxt-i18n-default": "^0.0.2",
"thousands": "^1.0.1",
"vue-inline-svg": "^2.1.3",
"vuelidate": "^0.7.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@nuxt/types": "^2.16.3",
"autoprefixer": "^10.4.14",
"beeper": "^3.0.0",
"cross-env": "^7.0.3",
"del": "^7.0.0",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^9.14.1",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-imagemin": "^8.0.0",
"gulp-less": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"imagemin-avif": "^0.1.4",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-webp": "^8.0.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.4.2",
"pre-commit": "^1.2.2"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR"
]
}