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
|
{
"name": "themanaworld-website",
"version": "5.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"build:dev": "vue-cli-service build --mode development",
"test:unit": "vue-cli-service test:unit",
"test:accessibility": "npm run webhint",
"webhint": "npx hint http://127.0.0.1:8080/"
},
"dependencies": {
"normalize.css": "^8.0.1",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.7",
"vue-script2": "^2.1.0"
},
"devDependencies": {
"@hint/configuration-web-recommended": "^6.2.2",
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.4",
"@vue/cli-plugin-typescript": "^3.9.0",
"@vue/cli-plugin-unit-mocha": "^3.9.0",
"@vue/cli-service": "^3.9.3",
"@vue/test-utils": "1.0.0-beta.29",
"chai": "^4.1.2",
"hint": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"typescript": "^3.5.3",
"vue-template-compiler": "^2.6.10"
}
}
|