-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "lego",
"version": "1.0.0",
"description": "A demo that enable building a website by drag & drop",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/github-libra/lego.git"
},
"keywords": [
"vuejs",
"dnd"
],
"author": "tanghejun@baixing.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/github-libra/lego/issues"
},
"homepage": "https://github.com/github-libra/lego#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^6.0.2",
"postcss-cssnext": "^3.0.2",
"postcss-fontpath": "^1.0.0",
"postcss-import": "^11.0.0",
"postcss-mixins": "^6.2.0",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-hot-middleware": "^2.20.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"vue": "^2.5.3",
"vuedraggable": "^2.15.0",
"vuex": "^3.0.1"
},
"eslintConfig": {
"extends": [
"standard"
]
}
}