-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.21 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
{
"name": "bruga-portfolio",
"description": "A personal portfolio made with Pug and Sass",
"version": "1.8.1",
"author": "andres-brugarolas",
"license": "MIT",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --hot",
"start:local": "cross-env NODE_ENV=development LOCAL=true webpack serve --hot",
"start:static": "npm run build && http-server ./dist",
"build": "cross-env NODE_ENV=production webpack --progress",
"build:analyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --progress",
"icons:add": "node scripts/download-icon",
"icons:update-included": "node scripts/download-included-icons",
"utils:outdated": "npm outdated",
"utils:updates": "ncu",
"utils:upgrades": "ncu -u"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.21.0",
"dayjs": "^1.11.7",
"nanoid": "^4.0.2",
"raf": "3.4.1",
"reactivefy": "^1.2.4",
"typewriter-effect": "^2.19.0",
"useful-decorators": "^0.4.5"
},
"engines": {
"node": ">=12.22.0"
},
"browserslist": [
">0.25%",
"not dead",
"not IE > 5",
"not android < 5"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@beyonk/google-fonts-webpack-plugin": "^1.7.0",
"@supercharge/promise-pool": "^2.4.0",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"chalk": "^5.2.0",
"compression-webpack-plugin": "^10.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"favicons": "^7.1.2",
"favicons-webpack-plugin": "^6.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.7.5",
"npm-check-updates": "^16.10.8",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"puppeteer-core": "^19.9.1",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"svgo": "^3.0.2",
"webfonts-loader": "^8.0.1",
"webpack": "^5.79.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3",
"webpackbar": "^5.0.2"
}
}