-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "silverstripe-cloudinary",
"version": "1.5.0",
"description": "SilverStripe Cloudinary image uploader",
"authors": [
"Daniel Kliemsch <[email protected]>"
],
"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.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-stage-3": "^7.0.0",
"@babel/runtime": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack-cli": "^3.3.0",
"webpack": "^4.29.6"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"axios": "^0.19.0",
"vue": "^2.6.10"
}
}