-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "vzurl",
"description": "URL fieldtype for the Craft content management system.",
"version": "2.1.1",
"author": "Eli Van Zoeren <eli@elivz.com>",
"homepage": "https://elivz.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:elivz/VzUrl-Craft.git"
},
"scripts": {
"dev": "webpack --mode development --watch --progress --hide-modules",
"build": "webpack --mode production --progress --hide-modules"
},
"dependencies": {
"axios": "^0.18.0",
"throttle-debounce": "^2.0.1",
"url-regex": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-custom-properties": "^8.0.5",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.0",
"style-loader": "^0.23.0",
"svg-url-loader": "^2.3.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1"
},
"target": {
"browsers": [
"> 0.25% in US",
"> 2%"
]
},
"babel": {
"presets": [
[
"@babel/env"
]
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}