-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"mini-css-extract-plugin": "^2.7.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2"
},
"dependencies": {
"stimulus": "^3.2.2",
"normalize-css": "^2.3.1",
"slick-carousel": "^1.8.1"
},
"scripts": {
"watch": "webpack --watch --mode=development --progress",
"build": "webpack build --mode=production --progress",
"init-dev": "pip install -U pip wheel setuptools pip-tools fab-classic; pip install -e 'git+https://github.com/benzkji/fabric-bnzk.git@main#egg=fabric-bnzk'"
},
"browserslist": "> 0.1%, not dead",
"prettier": {"editorconfig": true },
"eslint": {
"env": {
"browser": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"requireConfigFile": false
},
"extends": [
"eslint:recommended",
"prettier"
]
}
}