-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 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
{
"name": "blog-front",
"version": "0.0.0",
"description": "my blog's front-end project",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --hot --config build/webpack.dev.js",
"build": "webpack --progress --colors --config build/webpack.pro.js",
"pro": "webpack --progress --config build/webpack.pro.js",
"lint": "eslint --fix --ext .js,.vue src",
"test": "npm run lint"
},
"author": "lifang <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@types/highlight.js": "^9.12.3",
"@types/markdown-it": "0.0.8",
"@types/marked": "^0.6.2",
"@types/query-string": "^6.2.0",
"autoprefixer": "^9.4.5",
"autoprefixer-loader": "^3.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^5.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"node-sass": "^7.0.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"sass": "^1.16.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^3.5.0",
"typescript": "^3.1.4",
"typescript-eslint-parser": "^21.0.2",
"url-loader": "^1.1.2",
"vue-loader": "^15.5.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.22",
"webpack": "^3.12.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^2.11.3",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"axios": "^0.21.2",
"highlight.js": "^10.4.1",
"js-cookie": "^2.2.0",
"markdown-it": "^12.3.2",
"markdown-it-mathjax": "^2.0.0",
"marked": "^4.0.10",
"vue": "^2.5.22",
"vue-property-decorator": "^8.0.0",
"vue-router": "^3.0.2",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
}
}