This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.49 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
{
"name": "ersswiki",
"version": "0.2.3",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"build:preupload": "node scripts\\sync.js",
"build:prefetch": "node scripts\\preFetch.js",
"build:finalupload": "node scripts\\sync.js",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix",
"test": "jest",
"postcss": "postcss dist\\css\\*.css --no-map --use autoprefixer -d dist\\css",
"publish": "npm run generate && npm run postcss && npm run build:preupload && npm run build:prefetch && npm run build:finalupload"
},
"dependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/i18n": "^7.3.0",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/sitemap": "^2.4.0",
"autoprefixer": "^10.4.8",
"consola": "^2.15.3",
"core-js": "^3.19.3",
"dayjs": "^1.11.3",
"markdown-it": "^13.0.1",
"markdown-it-deflist": "^2.1.0",
"markdown-it-div": "^1.1.0",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-mark": "^3.0.1",
"normalize.css": "^8.0.1",
"nuxt": "^2.15.8",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"vue": "^2.6.14",
"vue-cool-lightbox": "^2.7.5",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.171.0",
"@babel/eslint-parser": "^7.16.3",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-plugin-import": "^1.13.5",
"cheerio": "1.0.0-rc.12",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.2.0",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"mime-types": "^2.1.35",
"ohmyfetch": "^0.4.18",
"postcss-css-variables": "^0.18.0",
"postcss-hexrgba": "^2.1.0",
"postcss-nested": "^5.0.6",
"postcss-responsive-type": "^1.0.0",
"postcss-url": "^10.1.3",
"prettier": "^2.5.1",
"puppeteer": "^16.2.0",
"querystring": "^0.2.1",
"request": "^2.88.2",
"s3-sync-client": "^3.0.3",
"sass": "^1.54.5",
"sass-loader": "10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}