forked from salisbury-espinosa/prodigy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.9 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
99
100
101
{
"name": "prodigy",
"version": "0.1.0",
"description": "landing constructor",
"main": "client/index.js",
"scripts": {
"test": "",
"build": "webpack --config build/webpack.prod.js",
"dev": "node build/server.js",
"lint": "eslint 'client/*.{vue,js}' 'client/**/*.{vue,js}'",
"lintfix": "eslint --fix 'client/*.{vue,js}' 'client/**/*.{vue,js}'",
"flow": "flow",
"precommit": "lint-staged",
"postcommit": "git update-index --again"
},
"author": "Salisbury Espinosa",
"license": "MIT",
"postcss": {
"plugins": {
"autoprefixer": {},
"postcss-nested": {}
}
},
"browserslist": [
"last 2 versions",
"ie > 8"
],
"moduleRoots": [
"client"
],
"dependencies": {
"babel-runtime": "^6.18.0",
"bootstrap": "^4.0.0-beta.2",
"bootstrap-vue": "^1.3.0",
"element-ui": "^2.0.4",
"file-saver": "^1.3.3",
"jquery": "^3.2.1",
"jquery.easing": "^1.4.1",
"js-beautify": "^1.7.5",
"lodash": "^4.17.5",
"magnific-popup": "^1.1.0",
"medium-editor": "^5.23.3",
"promise-polyfill": "^6.0.2",
"scrollreveal": "^3.3.6",
"vue": "^2.2.0",
"vue-async-computed": "^3.3.1",
"vue-awesome": "^2.3.4",
"vue-class-component": "^6.1.1",
"vue-draggable-resizable": "^1.5.3",
"vue-grid-layout": "^2.1.9",
"vue-property-decorator": "^6.0.0",
"vue-router": "^2.0.0",
"vue2-medium-editor": "^1.1.2",
"vuedraggable": "^2.15.0",
"vuex": "^2.0.0",
"vuex-router-sync": "^4.0.0",
"offline-plugin": "^4.9.0"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.16.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-vue-app": "^1.1.1",
"chalk": "^1.1.3",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-vue": "latest",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.4.0",
"expose-loader": "^0.7.4",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"flow-bin": "^0.68.0",
"friendly-errors-webpack-plugin": "^1.1.2",
"html-webpack-plugin": "^2.22.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"prettier": "1.11.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"style-loader": "^0.13.1",
"vue-loader": "^11.0.0",
"vue-template-compiler": "^2.2.0",
"webpack": "2.2.0",
"webpack-dev-server": "^2.6.1"
}
}