-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "josholaus.com",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.2",
"react-router-dom": "^6.0.2",
"typescript": "^4.5.2"
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.2",
"autoprefixer": "^9.8.8",
"gh-pages": "^3.2.3",
"postcss": "^7.0.39",
"prettier": "^2.5.1",
"react-scripts": "^4.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"format": "prettier --write .",
"predeploy": "npm run build && cp ./build/index.html ./build/404.html && mkdir ./build/projects && cp ./build/index.html ./build/projects/index.html && echo josholaus.com > ./build/CNAME",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}