-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "michael.bruno.fyi",
"version": "2.0.0",
"license": "MIT",
"repository": "git@github.com:mbround18/showcase-yourself.git",
"scripts": {
"dev": "webpack serve",
"build": "webpack build",
"generate": "webpack build --mode production",
"lint": "pretty-quick --staged && cargo fmt && cargo clippy",
"clean": "rimraf \"./{**/{pkg,target,dist},target,dist,pkg}\"",
"postinstall": "cargo check"
},
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "1.7.0",
"autoprefixer": "10.4.20",
"copy-webpack-plugin": "12",
"css-loader": "7",
"dotenv-webpack": "8.1.0",
"favicons": "7.2.0",
"favicons-webpack-plugin": "6.0.1",
"html-webpack-plugin": "5.6.3",
"husky": "9",
"postcss": "8.4.49",
"postcss-loader": "8",
"prettier": "3.3.3",
"pretty-quick": "4",
"rimraf": "6",
"sass": "1.81.0",
"sass-loader": "16",
"style-loader": "4",
"tailwindcss": "3.4.15",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5",
"webpack-manifest-plugin": "5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn generate"
}
},
"packageManager": "yarn@4.5.1"
}