-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
89 lines (89 loc) · 2.77 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
82
83
84
85
86
87
88
89
{
"name": "hackupc-landing",
"version": "3.1.0",
"description": "HackUPC landing page",
"author": "Hackers@UPC",
"license": "MIT",
"homepage": "https://hackupc.com",
"repository": "github:hackupc/hackupc-landing",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js --open --progress",
"dist": "webpack --config config/webpack.prod.js",
"lint:eslint": "eslint . --ext .js,.ts --fix",
"lint:stylelint": "stylelint --fix 'src/**/*.{scss,sass,css}'",
"lint:prettier": "prettier . --write"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@types/eslint": "8.4.10",
"@types/gtag.js": "0.0.12",
"@types/node": "18.11.18",
"@types/prettier": "2.7.2",
"@types/stylelint": "14.0.0",
"@types/webfontloader": "1.6.35",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"babel-loader": "9.1.2",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "10.0.0",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"glob": "8.1.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"mini-css-extract-plugin": "2.7.2",
"postcss": "8.4.21",
"postcss-easing-gradients": "3.0.1",
"postcss-focus-visible": "7.1.0",
"postcss-loader": "7.0.2",
"postcss-preset-env": "7.8.3",
"postcss-reporter": "7.0.5",
"prettier": "2.8.3",
"prettier-config-standard": "5.0.0",
"purgecss-webpack-plugin": "5.0.0",
"sass": "1.57.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"stylelint": "14.16.1",
"stylelint-config-idiomatic-order": "9.0.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "29.0.0",
"stylelint-order": "6.0.1",
"stylelint-scss": "4.3.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-pwa-manifest": "4.3.0",
"workbox-webpack-plugin": "6.5.4"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@fontsource/montserrat": "4.5.14",
"core-js": "3.27.2",
"focus-visible": "5.2.0",
"lax.js": "2.0.3",
"normalize.css": "8.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{scss,sass,css}": "stylelint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
},
"$schema": "https://json.schemastore.org/package"
}