-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.45 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
{
"name": "benasb.github.io",
"version": "1.0.0",
"description": "Personal website",
"main": "index.tsx",
"scripts": {
"start": "webpack serve --config webpack/webpack.config.js --env env=dev",
"build": "webpack --config webpack/webpack.config.js --env env=prod",
"build-analyze": "webpack --config webpack/webpack.config.js --env env=prod --analyze",
"postbuild": "react-snap",
"deploy-gh-pages": "gh-pages -d build",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"serve": "serve ./build",
"test": "jest",
"generate-og-images": "ts-node --project node.tsconfig.json src/utils/generateOgImages.ts",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenasB/benasb.github.io.git"
},
"author": "Benas Budrys",
"license": "ISC",
"bugs": {
"url": "https://github.com/BenasB/benasb.github.io/issues"
},
"homepage": "/",
"dependencies": {
"classnames": "^2.3.1",
"path-browserify": "^1.0.1",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"slugify": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@mdx-js/loader": "^1.6.22",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.2",
"@types/react-lazy-load-image-component": "^1.5.1",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.0",
"css-loader": "^5.2.0",
"dart-sass": "^1.25.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-mdx-metadata": "^2.0.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.4.0",
"node-html-to-image": "^3.2.0",
"prettier": "^2.2.1",
"react-lazy-load-image-component": "^1.5.1",
"react-refresh": "^0.10.0",
"react-snap": "^1.23.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.7.0",
"typescript": "^4.2.4",
"webpack": "^5.28.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
}
}