-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.59 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
{
"name": "my-webpage-revamped",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.1.3",
"framer-motion": "^6.3.15",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"semantic-ui-react": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@svgr/webpack": "^6.2.1",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vue/preload-webpack-plugin": "^2.0.0",
"autoprefixer": "10.4.5",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"html-loader": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"prettier": "2.6.2",
"progress-bar-webpack-plugin": "^2.1.0",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"sass-resources-loader": "^2.2.5",
"schema-utils": "^4.0.0",
"source-map-loader": "^3.0.1",
"stylelint": "^14.8.5",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"client-build": "npx webpack --config webpack/client/webpack.prod.js",
"client-build:dev": "npx webpack --config webpack/client/webpack.dev.js",
"client-start": "npx webpack serve --config webpack/client/webpack.dev.js",
"client-start:prod": "npx webpack serve --config webpack/client/webpack.prod.js",
"server-build:dev": "npx webpack --config webpack/server/webpack.dev.js && node scripts/renderHtml.js",
"server-build": "npx webpack --config webpack/server/webpack.prod.js && node scripts/renderHtml.js",
"start:dev": "yarn server-build && yarn client-start:dev",
"start": "yarn server-build:dev && yarn client-start",
"build": "yarn server-build && yarn client-build",
"prepare": "husky install",
"deploy": "yarn build && gh-pages -d build -b main -r https://github.com/benmurphyy/benmurphyy.github.io",
"test-deploy": "yarn build && gh-pages -d build -b main -r https://github.com/benmurphyy/portfolio-website-test-deploy.git",
"test-deploy:dev": "yarn server-build && yarn client-build:dev && gh-pages -d build -b main -r https://github.com/benmurphyy/portfolio-website-test-deploy.git",
"analyze-bundle": "webpack-bundle-analyzer --port 4200 build/stats.json"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"stylelint --allow-empty-input",
"prettier --write --ignore-unknown"
]
},
"resolutions": {
"autoprefixer": "10.4.5"
},
"browserslist": "> 0.25%, not dead"
}