-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "x-blog",
"version": "1.0.0",
"description": "person blog",
"main": "index.js",
"scripts": {
"dev": "webpack-dashboard -- webpack-dev-server --config webpack.config.dev.js --compress true --devtool eval-source-map --progress --colors --hot --port 3000 --inline --host 0.0.0.0 --content-base ./dist",
"server": "json-server --watch ./src/lib/mock/db.json --port 3001",
"prod": "node ./build/build.js | webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommanderXL/x-blog.git"
},
"keywords": [
"webpack2",
"vue2",
"node"
],
"author": "XRene",
"license": "ISC",
"bugs": {
"url": "https://github.com/CommanderXL/x-blog/issues"
},
"homepage": "https://github.com/CommanderXL/x-blog#readme",
"devDependencies": {
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.26.1",
"es6-promise": "^4.0.5",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"i18n-loader": "^0.3.0",
"i18n-webpack-plugin": "^0.3.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"open": "0.0.5",
"opn": "^4.0.2",
"pre-commit": "^1.2.2",
"shelljs": "^0.7.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue": "^2.1.10",
"vue-i18n": "^6.0.0-alpha.2",
"vue-loader": "^10.3.0",
"vue-router": "^2.2.0",
"vue-style-loader": "^2.0.0",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1"
},
"dependencies": {
"express": "^4.15.0"
}
}