-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "silverstripe-ajax-select-field",
"version": "0.5.1",
"description": "Ajax Select Field for Silverstripe using vue.js",
"authors": {
"name": "Level51",
"email": "hallo@lvl51.de"
},
"scripts": {
"dev": "webpack --config=client/config/webpack.dev.js --env NODE_ENV=development",
"watch": "webpack --config=client/config/webpack.dev.js --env NODE_ENV=development --watch",
"build": "webpack --config=client/config/webpack.prod.js --env NODE_ENV=production"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-stage-3": "^7.8.3",
"@babel/runtime": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.5.0",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"mini-css-extract-plugin": "^1.3.5",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.8.3",
"css-minimizer-webpack-plugin": "^3.0.0",
"qs": "^6.9.6",
"regenerator-runtime": "^0.13.7",
"vue": "^2.6.12",
"vue-i18n": "^8.24.4",
"vue-simple-suggest": "^1.10.3",
"vue-slicksort": "^1.2.0"
}
}