-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.28 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
{
"name": "extendsConf.com",
"version": "1.0.0",
"description": "An online 'conference' for Craft CMS people.",
"private": true,
"author": {
"name": "Michael Rog",
"email": "[email protected]",
"url": "https://michaelrog.com"
},
"contributors": [
{
"name": "Jalen Davenport",
"email": "[email protected]",
"url": "https://jalendport.com"
}
],
"browserslist": {
"production": [
"defaults"
],
"legacyBrowsers": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
],
"modernBrowsers": [
"last 2 Chrome versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Firefox versions",
"last 2 Edge versions"
]
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@fullhuman/postcss-purgecss": "^1.2.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"critical": "^1.3.6",
"critical-css-webpack-plugin": "^0.2.0",
"css-loader": "^3.1.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"dotenv": "^8.0.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"save-remote-file-webpack-plugin": "^1.0.2",
"speed-measure-webpack-plugin": "^1.3.3",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"svg-spritemap-webpack-plugin": "^3.4.0",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dashboard": "^3.0.7",
"webpack-dev-server": "^3.7.2",
"webpack-manifest-plugin": "^2.0.4"
},
"dependencies": {
"core-js": "^3.0",
"tailwindcss": "^1.4",
"vue": "^2.6"
},
"scripts": {
"build:dev": "NODE_ENV=development webpack --config _build/webpack.config.js --progress --hide-modules",
"build:prod": "NODE_ENV=production webpack --config _build/webpack.config.js --progress --hide-modules",
"serve": "NODE_ENV=development webpack-dashboard -- webpack-dev-server --hot --config _build/webpack.config.js",
"serve:debug": "NODE_ENV=development webpack-dev-server --hot --config _build/webpack.config.js"
}
}