-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.53 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.53 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vuelog",
"version": "2.14.3",
"description": "A backend-free blog system built on top of Vue.js",
"author": "Leo Deng",
"license": "MIT",
"brand": "Vuelog",
"website": "https://vuelog.js.org",
"project": "https://github.com/myst729/Vuelog",
"repository": {
"type": "git",
"url": "git+https://github.com/myst729/Vuelog.git"
},
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js",
"lite": "USE_CDN=true npm run build",
"report": "npm run build --report",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src userdata test/unit/specs test/e2e/specs"
},
"dependencies": {
"fastclick": "^1.0.6",
"marked": "^0.8.0",
"node-sass": "^4.14.1",
"prismjs": "^1.11.0",
"sass-loader": "^7.3.1",
"vue": "^2.5.13",
"vue-disqus": "^2.0.4",
"vue-i18n": "^7.4.2",
"vue-livere": "^0.3.1",
"vue-meta": "^1.4.3",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.5.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.1",
"chromedriver": "^2.35.0",
"codecov": "^3.6.5",
"copy-webpack-plugin": "^4.4.1",
"cross-spawn": "^6.0.4",
"css-loader": "^0.28.9",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"friendly-errors-webpack-plugin": "^1.6.1",
"geckodriver": "^1.19.1",
"html-webpack-inline-chunk-plugin": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.2.2",
"jest-serializer-vue": "^0.3.0",
"nightwatch": "^0.9.19",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.0",
"postcss-url": "^7.3.0",
"rimraf": "^2.6.2",
"selenium-server": "^3.9.1",
"semver": "^5.5.0",
"shelljs": "^0.8.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"url-loader": "^0.6.2",
"vue-jest": "^2.1.0",
"vue-loader": "^14.1.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.10.0",
"webpack-cdn-plugin": "^1.8.1",
"webpack-dev-server": "^2.11.5",
"webpack-merge": "^4.1.1"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"browserslist": [
"Chrome >= 60",
"Safari >= 10.1",
"iOS >= 10.3",
"Firefox >= 54",
"Edge >= 15"
]
}