-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.55 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "portfolio",
"version": "1.0.0",
"description": "Chase Ottofy Portfolio",
"main": "index.js",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"analyze": "webpack --mode=production --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"dev": "webpack serve --mode=development",
"build": "npm run clean && webpack --mode=production",
"build:server": "node ./scripts/build-server.mjs",
"deploy": "gh-pages -d dist",
"preview": "npm run build && http-server dist --port 4321 -o -g -c-1 --cors",
"clean": "rm -rf ./dist/*",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"gen:fallback-images": "node ./scripts/gen-fallback-images.mjs",
"gen:parsed-images": "node ./scripts/parse.mjs --mode=parse",
"gen:fallbacks": "node ./scripts/expiremental-fallbackfonts.mjs",
"gen:subset": "node ./plugins/expiremental-subsetfonts.mjs",
"mod:svg": "node ./scripts/mod-svg.mjs",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaseottofy/portfolio.git"
},
"resolutions": {
"webpack": "^5.82.0"
},
"keywords": [
"ottofy",
"chase ottofy",
"portfolio",
"chaseottofy",
"front end",
"front end developer",
"javascript developer",
"react developer",
"react",
"javascript"
],
"author": "Chase Ottofy",
"license": "ISC",
"bugs": {
"url": "https://github.com/chaseottofy/Portfolio/issues"
},
"homepage": "https://github.com/chaseottofy/portfolio#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@babel/runtime": "^7.21.5",
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
"babel-loader": "^9.1.2",
"compression": "^1.7.5",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"cssnano": "^6.0.1",
"cssnano-preset-advanced": "^6.0.1",
"dotenv-webpack": "^8.0.1",
"esbuild": "^0.19.3",
"esbuild-loader": "^4.0.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-class-members": "^1.21.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-webpack-plugin": "^4.2.0",
"express": "^4.21.1",
"express-rate-limit": "^7.5.0",
"fontkit": "^2.0.4",
"gh-pages": "^5.0.0",
"handlebars": "^4.7.8",
"html-bundler-webpack-plugin": "^1.18.0",
"postcss": "^8.5.1",
"postcss-csso": "^6.0.1",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"sharp": "^0.32.5",
"source-map-loader": "^4.0.1",
"stylelint": "^16.13.2",
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-high-performance-animation": "^1.10.0",
"subset-font": "^2.4.0",
"svgo": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-manifest-plugin": "^5.0.0",
"zlib": "^1.0.5"
}
}