-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"name": "arkw.net-nuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run image:webp && nuxt",
"build": "npm run image:webp && nuxt build && nuxt generate",
"start": "nuxt start",
"lint:prettier": "prettier --write -c .",
"lint:js": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:css": "stylelint --fix **/*.{vue,scss,css} --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:css && npm run lint:prettier",
"image:webp": "node convert-webp.mjs"
},
"dependencies": {
"@babel/preset-env": "^7.26.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/google-gtag": "^1.0.4",
"core-js": "^3.40.0",
"hooper": "^0.3.4",
"nuxt-i18n": "^6.28.1",
"vue-click-outside": "^1.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@nuxt/image": "^0.7.2",
"@nuxt/postcss8": "^1.1.3",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/style-resources": "^1.2.2",
"@nuxtjs/stylelint-module": "^5.2.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.32.0",
"imagemin": "^8.0.1",
"imagemin-webp": "^8.0.0",
"nuxt": "^2.2.0",
"postcss": "^8.4.49",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^10.5.2",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^3.0.0",
"webpack": "^4.46.0"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
}
}