-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.58 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
{
"name": "nimbu-website",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@angular-eslint/template-parser": "^17.3.0",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.11",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-webpack-plugin": "^4.1.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"image-minimizer-webpack-plugin": "^4.0.0",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.8.1",
"npm-package-json-lint": "^7.1.0",
"npm-package-json-lint-config-default": "^6.0.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.2",
"tailwindcss-animated": "^1.0.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"scripts": {
"prepare": "husky install",
"start": "webpack serve --config webpack/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"analyze": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js --profile --json=dist/stats.json && webpack-bundle-analyzer dist/stats.json",
"lint": "eslint ./src",
"lint:debug": "eslint ./src --debug",
"lint:fix": "eslint ./src --fix",
"css-lint": "stylelint \"src/**/*.{css,scss}\"",
"css-lint:fix": "npm run css-lint -- --fix",
"js-lint": "eslint \"src/**/*.js\"",
"js-lint:fix": "npm run js-lint -- --fix",
"package-json-lint": "npx npm-package-json-lint .",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"alpinejs": "^3.13.7",
"swiper": "^11.1.1"
}
}