-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.23 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "bolt",
"version": "4.0.0-alpha.0",
"homepage": "https://bolt.cm",
"author": "Bob den Otter <[email protected]> (https://bolt.cm)",
"license": "MIT",
"description": "Bolt 4.0.0 prototype",
"keywords": [
"bolt",
"cms",
"php",
"symfony",
"vue",
"content",
"management",
"system"
],
"bugs": {
"url": "https://github.com/bolt/four/issues"
},
"main": "webpack.config.js",
"directories": {
"tests": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/bolt/four.git"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@vue/cli-service": "^3.3.0",
"axios": "^0.18.0",
"baguettebox.js": "^1.11.0",
"bootstrap": "^4.2.1",
"codemirror": "^5.43.0",
"flagpack": "^1.0.3",
"jquery": "^3.3.1",
"moment": "^2.24.0",
"no-scroll": "^2.1.1",
"popper.js": "^1.14.7",
"register-service-worker": "^1.5.2",
"simplemde": "^1.11.2",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.1",
"terser": "3.14.1",
"tinycolor2": "^1.4.1",
"vue": "^2.5.22",
"vue-flatpickr-component": "^8.1.1",
"vue-multiselect": "^2.1.3",
"vue-notification": "^1.3.15",
"vue-simplemde": "^0.5.1",
"vue-trumbowyg": "^3.4.1",
"vuedraggable": "^2.17.0",
"vuex": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@symfony/webpack-encore": "^0.22.4",
"@vue/test-utils": "^1.0.0-beta.29",
"ajv-keywords": "^3.3.0",
"autoprefixer": "^9.4.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "5.12.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"jest": "^23.6.0",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"prettier": "1.15.3",
"regenerator-runtime": "^0.13.1",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"vue-jest": "^3.0.2",
"vue-loader": "^15.6.1",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.22",
"webpackbar": "^3.1.5",
"workbox-webpack-plugin": "^3.6.3"
},
"scripts": {
"start": "encore dev-server --port=8234 --progress --disable-host-check --verbose",
"build": "encore production --progress",
"lint": "eslint --ext .js,.vue, assets",
"lint-fix": "eslint --ext .js,.vue, assets --fix",
"stylelint": "stylelint 'assets/scss'",
"stylelint-fix": "stylelint 'assets/scss' --fix",
"test": "jest"
},
"browserslist": [
"> 1%"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/assets/js/app/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
}
}