-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
75 lines (75 loc) · 2.18 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
{
"version": "4.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": {
"clsx": "^2.1.1",
"gh-pages": "^6.1.1",
"postcss-import": "^16.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"scrollreveal": "^4.0.9",
"tailwind-merge": "^2.4.0",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^9.6.0",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/scrollreveal": "^0.0.11",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}