-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "button-stack",
"version": "1.0.0",
"description": "A collection of stylish, flexible, and scalable button designs for the web.",
"main": "index.js",
"scripts": {
"lint:css": "stylelint --formatter --config .stylelintrc.json \"**/*.scss\"",
"lint:js": "eslint --config .eslintrc.json src/**/*.js",
"lint": "npm run lint:css && npm run lint:js",
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"prepare": "husky"
},
"author": "Brinsil Elias",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"mini-css-extract-plugin": "^2.8.1",
"postcss": "^8.4.35",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.4.0",
"sass": "^1.71.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-scss": "^5.3.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpackbar": "^6.0.1"
},
"dependencies": {
"jquery": "^3.7.1"
}
}