-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 4.23 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vuepress-blog-template",
"version": "2022.7.31",
"description": "Blog Title",
"author": "Dusan Vuckovic <[email protected]>",
"scripts": {
"postinstall": "scripts/postinstall.sh",
"dev": "vuepress dev src",
"serve": "vuepress dev src",
"build": "vuepress build src",
"dist": "serve --listen 8080 --no-clipboard dist",
"start": "npm run build && npm run dist",
"lint": "vue-cli-service lint src/.vuepress/ tests/",
"test:all": "npm run test:unit && npm run test:e2e",
"ci-test:all": "npm run ci-test:unit && npm run ci-test:e2e",
"test:e2e": "vue-cli-service test:e2e --url http://localhost:8080 --headless --quiet",
"ci-test:e2e": "vue-cli-service test:e2e --url http://localhost:8080 --headless --quiet --reporter cypress-multi-reporters",
"test:unit": "vue-cli-service test:unit",
"ci-test:unit": "vue-cli-service test:unit --reporters default --reporters @bobthered/jest-markdown-reporter",
"pretest": "npm run lint",
"ci-test:e2e:combine": "mochawesome-merge mochawesome/*.json -o CYPRESS_RESULTS.json && rm -rf mochawesome",
"ci-test:e2e:markdown": "mochawesome-json-to-md -p CYPRESS_RESULTS.json -o CYPRESS_RESULTS.md --reportTitle \"Cypress Test Results\" --showEmoji false --showDate false --showDuration false --showFailed false --showSkipped false --showCypress false && rm CYPRESS_RESULTS.json",
"test": "start-server-and-test start 8080 test:all",
"ci-test": "start-server-and-test start 8080 ci-test:all",
"postci-test": "npm run ci-test:e2e:combine && npm run ci-test:e2e:markdown"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10",
"@bobthered/jest-markdown-reporter": "^0.0.1",
"@dvuckovic/vue-bootstrap-icons": "^1.0.6",
"@popperjs/core": "^2.5.4",
"@vue/cli-plugin-e2e-cypress": "^5.0.4",
"@vue/cli-plugin-eslint": "^5.0.4",
"@vue/cli-plugin-unit-jest": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/test-utils": "^1.1.2",
"@vue/vue2-jest": "^27.0.0",
"@vuepress/plugin-google-analytics": "^1.7.1",
"@vuepress/theme-blog": "^2.3.3",
"acorn-dynamic-import": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.3",
"bootstrap": "^5.0.0-beta2",
"cache-loader": "^4.1.0",
"chart.js": "^2.9.4",
"chartjs-plugin-deferred": "^1.0.1",
"cypress": "^9.1.1",
"cypress-multi-reporters": "^1.6.0",
"cypress-pipe": "^2.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^8.1.1",
"gray-matter": "^4.0.2",
"jest": "^28.0.3",
"jest-canvas-mock": "^2.3.0",
"lodash": "^4.17.20",
"masonry-layout": "^4.2.2",
"medium-zoom": "^1.0.6",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
"mochawesome-json-to-md": "^0.6.2",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0",
"moment": "^2.29.4",
"page-flip": "^2.0.0",
"papaparse": "^5.3.0",
"photo-sphere-viewer": "^4.0.7",
"photoswipe": "^4.1.3",
"sass": "^1.35.2",
"sass-loader": "^10.1.0",
"serve": "^13.0.2",
"sprintf-js": "^1.1.2",
"start-server-and-test": "^1.11.7",
"striptags": "^3.2.0",
"vue-in-viewport-mixin": "^2.0.1",
"vue-jest": "^3.0.7",
"vue-plugin-load-script": "^1.3.2",
"vue2-google-maps": "^0.10.7",
"vuepress": "^1.7.1",
"vuepress-plugin-dehydrate": "^1.1.5",
"vuepress-plugin-live": "^1.6.2",
"vuepress-plugin-seo": "^0.1.4",
"vuex": "^3.6.0",
"vuex-router-sync": "^5.0.0"
},
"homepage": "https://github.com/dvuckovic/vuepress-blog-template",
"keywords": [
"vuepress",
"blog",
"template"
],
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git+https://github.com/dvuckovic/vuepress-blog-template.git"
}
}