-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.05 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
{
"name": "modokemdev-website",
"version": "3.0.3",
"description": "ModokemDev website created using create-react-app",
"main": "index.js",
"private": true,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build && echo www.modokemdev.com > ./build/CNAME",
"postbuild": "react-snap",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:styles": "postcss src/styles/index.css -o src/index.css",
"prebuild": "npm run build:styles",
"prestart": "npm run build:styles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoandre1/marcoandre1.github.io.git"
},
"keywords": [
"create-react-app",
"tailwind CSS",
"Github Pages",
"gh-pages"
],
"author": "modokemdev (https://modokemdev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoandre1/marcoandre1.github.io/issues"
},
"homepage": "https://modokemdev.com",
"dependencies": {
"@headlessui/react": "^1.7.7",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"react-simple-img": "^2.3.9",
"redux": "^4.0.5"
},
"overrides": {
"react-scripts": {
"@svgr/webpack": "8.1.0",
"resolve-url-loader": "5.0.0"
}
},
"eslintConfig": {
"extends": "react-app"
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"gh-pages": "^6.1.1",
"postcss-cli": "^11.0.0",
"react-snap-test": "^1.23.8",
"tailwindcss": "^3.4.1"
}
}