forked from lukemcdonald/holly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.23 KB
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
{
"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.0.0",
"gh-pages": "^6.0.0",
"postcss-import": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"scrollreveal": "^4.0.9",
"tailwind-merge": "^1.14.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.0.1",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "^8.44.3",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@types/scrollreveal": "^0.0.9",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}