-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "luke-mcdonald-remix",
"private": true,
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "postcss styles/tailwind.css -o ./app/styles/tailwind.css",
"deploy": "fly --app lukemcdonald deploy .",
"deploy:local": "fly deploy --local-only",
"deploy:remote": "fly deploy --remote-only",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "postcss styles/tailwind.css -o ./app/styles/tailwind.css --watch",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"predeploy": "npm run build",
"prepare": "husky install",
"start": "remix-serve build/index.js"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@remix-run/node": "2.0.1",
"@remix-run/react": "2.0.1",
"@remix-run/serve": "2.0.1",
"@tailwindcss/typography": "^0.5.10",
"cloudinary": "^1.41.0",
"cloudinary-build-url": "^0.2.4",
"clsx": "^2.0.0",
"front-matter": "^4.0.2",
"marked": "^9.0.3",
"postcss-import": "^15.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.1",
"use-local-storage-state": "^19.1.0"
},
"devDependencies": {
"@cld-apis/types": "^0.1.6",
"@remix-run/dev": "2.0.1",
"@remix-run/eslint-config": "2.0.1",
"@types/eslint": "^8.44.3",
"@types/marked": "^5.0.2",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/parser": "^6.7.3",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"engines": {
"node": ">=18"
},
"type": "module",
"sideEffects": false
}