-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.86 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
90
{
"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 'src/**/*.{scss,sass,css}' --fix",
"lint:prettier": "prettier . --write"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@types/eslint": "^7.2.10",
"@types/gtag.js": "^0.0.4",
"@types/node": "^15.0.1",
"@types/prettier": "^2.2.3",
"@types/stylelint": "^9.10.1",
"@types/webfontloader": "^1.6.32",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.6",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"markup-inline-loader": "^4.0.0",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.2.13",
"postcss-easing-gradients": "^3.0.1",
"postcss-focus-visible": "^5.0.0",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^7.0.2",
"prettier": "2.2.1",
"prettier-config-standard": "^4.0.0",
"purgecss-webpack-plugin": "^4.0.3",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@fontsource/montserrat": "^4.2.2",
"core-js": "^3.11.1",
"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"
}