-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "e-krebs.github.io",
"version": "2.0.0",
"description": "",
"scripts": {
"dev": "parcel serve src/index.html",
"clean:cache": "rimraf .parcel-cache",
"clean:build": "rimraf dist",
"clean": "yarn clean:cache && yarn clean:build",
"build:app": "parcel build src/index.html",
"build:404": "shx cp ./dist/index.html ./dist/404.html",
"build:CNAME": "shx cp ./CNAME ./dist/CNAME",
"build": "yarn clean && yarn build:app && yarn build:404 && yarn build:CNAME",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e-krebs/e-krebs.github.io.git"
},
"author": "e-krebs",
"license": "MIT",
"bugs": {
"url": "https://github.com/e-krebs/e-krebs.github.io/issues"
},
"homepage": "https://github.com/e-krebs/e-krebs.github.io#readme",
"devDependencies": {
"@parcel/transformer-inline-string": "2.12.0",
"@types/node": "^20.12.2",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.4.19",
"gh-pages": "^6.1.1",
"parcel": "^2.12.0",
"postcss": "^8.4.38",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"shx": "^0.3.4",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.3"
}
}