-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
98 lines (98 loc) · 3 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
{
"name": "vue-ghpages-blog",
"description": "A blog based on GitHub Pages built with Vue.js 2 + webpack 3",
"version": "1.3.0",
"main": "src/main.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot",
"prebuild": "rimraf dist/*",
"build": "cross-env NODE_ENV=production webpack -p --progress --hide-modules",
"lint": "eslint --ext \".js, .vue\" src test --fix",
"test:unit": "cross-env NODE_ENV=testing BABEL_ENV=test karma start test/unit/karma.conf.js",
"test:e2e": "webpack -p && mocha --opts test/e2e/mocha.opts --exit",
"pretest": "npm run lint",
"test": "npm run test:unit && npm run test:e2e",
"analyzer": "webpack -p --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viko16/vue-ghpages-blog.git"
},
"keywords": [
"blog",
"github",
"vuejs",
"webpack"
],
"author": "viko16 (https://github.com/viko16)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viko16/vue-ghpages-blog/issues"
},
"homepage": "https://github.com/viko16/vue-ghpages-blog#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"avoriaz": "^4.2.0",
"axios-mock-adapter": "^1.14.1",
"babel-core": "^6.0.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.2",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"eslint": "^4.19.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-vue": "^4.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.22.0",
"http-server": "^0.10.0",
"inject-loader": "^3.0.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.13",
"lodash": "^4.17.5",
"mocha": "^4.1.0",
"nightmare": "^3.0.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"sinon": "^4.4.6",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-hot-reload-api": "^2.3.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^13.7.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-server": "^2.11.2",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.1",
"es6-promise": "^4.2.4",
"front-matter": "^2.3.0",
"marked": "^0.3.17",
"normalize.css": "^7.0.0",
"prismjs": "^1.12.2",
"timeago.js": "^3.0.0",
"vue": "^2.5.16",
"vue-router": "^3.0.1"
}
}