-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
87 lines (87 loc) · 2.25 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
{
"name": "storefront.protocol.one",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --host 127.0.0.1 --port 8080",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"cjs": "gulp cjs"
},
"dependencies": {
"@baianat/base.framework": "^2.0.0-beta.0",
"@fortawesome/fontawesome-free": "^5.3.1",
"es6-promise": "^4.2.4",
"image-webpack-loader": "^4.3.1",
"jquery": "^3.1.1",
"lodash-es": "^4.17.4",
"popper.js": "^1.14.4",
"qs": "^6.5.1",
"sortablejs": "^1.6.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-circle-slider": "^1.0.2",
"vue-color": "^2.6.0",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"@vue/eslint-config-standard": "^3.0.3",
"axios": "^0.16.2",
"babel-loader": "^8.0.2",
"cross-env": "^5.0.1",
"eslint-loader": "^2.1.1",
"file-loader": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-util": "^3.0.8",
"jszip": "^3.1.4",
"lint-staged": "^7.2.2",
"node-sass": "^4.5.3",
"resize-observer-polyfill": "^1.5.0",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.3",
"save-as": "^0.1.8",
"style-loader": "^0.22.1",
"style-resources-loader": "^1.2.1",
"vue": "^2.5.17",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.19.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"description": "ProtocolOne site builder",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"eslintIgnore": [
"src/editor/**/*.js",
"src/plugins/**/*.vue",
"src/cscripts/*.js",
"public/js/*.js"
]
}