-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 4.01 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
108
109
110
111
112
113
114
115
{
"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",
"parseimg": "node ./scripts/parse.mjs --mode=parse",
"setparse:base": "node ./scripts/parse.mjs --mode=base",
"setparse:sub": "node ./scripts/parse.mjs --mode=sub",
"setparse:out": "node ./scripts/parse.mjs --mode=setImageDirOutput",
"setparse:wh": "node ./scripts/parse.mjs --mode=wh",
"setparse:multiplier": "node ./scripts/parse.mjs --mode=multiplier",
"setparse:format": "node ./scripts/parse.mjs --mode=format",
"setparse:quality": "node ./scripts/parse.mjs --mode=quality",
"setparse:ar": "node ./scripts/parse.mjs --mode=ar",
"setparse:current": "node ./scripts/parse.mjs --mode=current",
"setparse:help": "node ./scripts/parse.mjs --mode=help",
"subset:fonts": "node ./scripts/handle-subset-font.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",
"autoprefixer": "^10.4.20",
"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",
"gh-pages": "^5.0.0",
"handlebars": "^4.7.8",
"html-bundler-webpack-plugin": "^1.18.0",
"postcss": "^8.4.23",
"postcss-csso": "^6.0.1",
"postcss-loader": "^7.3.0",
"postcss-preset-env": "^8.3.2",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"sharp": "^0.32.5",
"source-map-loader": "^4.0.1",
"stylelint": "^15.11.0",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-order": "^6.0.4",
"subset-font": "^2.4.0",
"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",
"yargs": "^17.7.2",
"zlib": "^1.0.5"
}
}