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
|
{
"name": "themanaworld-website",
"version": "6.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"deploy": "yarn news && yarn build",
"build:dev": "vue-cli-service build --modern --mode development",
"news": "node tools/news.js",
"test:accessibility": "yarn webhint",
"test:lint": "vue-cli-service lint",
"webhint": "npx hint -c ./.hintrc http://127.0.0.1:8080/"
},
"dependencies": {
"core-js": "^3.37.0",
"normalize.css": "^8.0.1",
"vue": "~3.2.0",
"vue-class-component": "^8.0.0-0",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@gfx/zopfli": "^1.0.15",
"@typescript-eslint/eslint-plugin": "^5.0.8",
"@typescript-eslint/parser": "^5.0.8",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-typescript": "^8.0.0",
"compression-webpack-plugin": "^9.0.0",
"eslint": "^7.0.0",
"eslint-plugin-vue": "^7.17.0",
"postcss-preset-env": "^6.7.0",
"typescript": "~4.1.5"
}
}
|