-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"devDependencies": {
"@symfony/webpack-encore": "^0.19.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"lodash": "^4.17.10",
"path": "^0.12.7",
"vue": "^2.5.16",
"vue-i18n": "^7.6.0",
"vue-loader": "^14.2.2",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"vuelidate": "^0.6.2",
"vuex": "^3.0.1",
"vuex-map-fields": "^1.1.7"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"add-module-exports",
"syntax-dynamic-import",
"transform-class-properties",
"transform-decorators-legacy",
"transform-object-rest-spread",
"transform-runtime"
]
}
}