-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"version": "0.1.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --mode production --config ./webpack.config.js",
"watch": "NODE_ENV=production webpack --mode production --watch --config ./webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"@babel/runtime-corejs3": "^7.17.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"browserify": "^17.0.0",
"core-js": "^3.22.0",
"craftcms-sass": "^3.5.7",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^6.2.1",
"sass": "^1.34.0",
"sass-loader": "^10.2.0",
"svg-transform-loader": "^2.0.13",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}