-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"version": "2.0.0",
"name": "holly-react",
"description": "React version of Holly",
"author": "Luke McDonald (https://lukemcdonald.com/)",
"homepage": "https://lukemcdonald.github.io/holly-react",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukemcdonald/holly-react.git"
},
"bugs": {
"url": "https://github.com/lukemcdonald/holly-react/issues"
},
"scripts": {
"build": "NODE_ENV=production run-s build:*",
"build:css": "postcss styles/tailwind.css -o src/assets/styles.css",
"build:vite": "vite build",
"deploy": "gh-pages -d dist",
"dev": "run-p dev:*",
"dev:css": "postcss styles/tailwind.css -o src/assets/styles.css --watch",
"dev:vite": "vite",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint . --fix",
"predeploy": "$npm_execpath run build",
"preview": "vite preview",
"start": "$npm_execpath run dev",
"typecheck": "tsc --noEmit",
"validate": "run-p lint typecheck"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.2",
"clsx": "^1.2.1",
"gh-pages": "^5.0.0",
"mdb-react-ui-kit": "^6.0.0",
"mdbootstrap": "^4.20.0",
"mdbreact": "^5.2.0",
"postcss-import": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.7.0",
"scrollreveal": "^4.0.9"
},
"devDependencies": {
"@remix-run/eslint-config": "^1.8.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "^8.4.10",
"@types/node": "^18.11.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-gravatar": "^2.6.10",
"@types/scrollreveal": "^0.0.8",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}