forked from Virtual-Coffee/virtualcoffee.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "virtualcoffee-io",
"version": "2.0.0",
"description": "The public site for virtualcoffee.io",
"homepage": "https://github.com/Virtual-Coffee/virtualcoffee.io#readme",
"bugs": {
"url": "https://github.com/Virtual-Coffee/virtualcoffee.io/issues"
},
"repository": "git://github.com/Virtual-Coffee/virtualcoffee.io.git",
"license": "CC-BY-3.0",
"author": "Virtual Coffee <[email protected]> (https://virtualcoffee.io/)",
"sideEffects": false,
"main": "index.js",
"engines": {
"node": ">=18.16"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "npx prettier --write --ignore-unknown --list-different \"**/*\"",
"lint": "eslint ./app/**/*.{js,jsx,ts,tsx}",
"build": "run-s build:*",
"build:tailwind": "pnpm generate:tailwind --minify",
"build:data": "node scripts/buildUrls.js",
"build:members": "node scripts/loadMemberFiles.js",
"build:sass": "sass --load-path=node_modules styles/:.tmp/styles/",
"build:css": "postcss .tmp/styles/**/*.css --base .tmp/styles --dir app/styles --env production",
"build:remix": "cross-env NODE_ENV=production remix build",
"dev": "pnpm build && run-p dev:*",
"dev:tailwind": "pnpm generate:tailwind --watch",
"dev:sass": "sass --load-path=node_modules --watch styles/:.tmp/styles",
"dev:css": "postcss .tmp/styles/**/*.css --base .tmp/styles --dir app/styles -w",
"dev:remix": "cross-env NODE_ENV=development pnpm netlify dev",
"generate:tailwind": "npx tailwindcss -i ./styles/tailwind-input.css -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production pnpm netlify dev",
"analyze": "source-map-explorer 'public/build/**/*.js'"
},
"dependencies": {
"@faker-js/faker": "^8.1.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@imgix/js-core": "^3.8.0",
"@netlify/functions": "^2.0.2",
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@remix-run/netlify": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"@remix-run/server-runtime": "^1.19.3",
"@sindresorhus/slugify": "^2.2.1",
"@slack/web-api": "^6.9.0",
"airtable": "^0.12.2",
"autoprefixer": "^10.4.15",
"axios": "^1.5.0",
"bootstrap": "^4.6.2",
"calendar-link": "^2.5.1",
"classnames": "^2.3.2",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"dotenv": "^16.3.1",
"encoding": "^0.1.13",
"eslint": "^8.49.0",
"front-matter": "^4.0.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^8.0.0",
"leaflet": "^1.9.4",
"luxon": "^3.4.3",
"markdown-it": "^13.0.1",
"mdast-util-toc": "^7.0.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.30",
"postcss-cli": "^10.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-sanitize": "^5.0.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.4",
"remark-attr": "^0.11.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remix-auth": "^3.5.1",
"remix-auth-form": "^1.3.0",
"remix-utils": "^6.6.0",
"require-dir": "^1.2.0",
"sanitize-html": "^2.11.0",
"sass": "^1.67.0",
"tiny-invariant": "^1.3.1",
"unified": "^10.1.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/leaflet": "^1.9.6",
"@types/luxon": "^3.3.2",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/require-dir": "^1.0.2",
"@types/sanitize-html": "^2.9.0",
"netlify-cli": "^16.4.1",
"prettier": "^3.0.3",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.3.3",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
}
}