forked from Virtual-Coffee/virtualcoffee.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.86 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",
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow yarn",
"prepare": "husky install",
"format": "npx prettier --write --ignore-unknown \"**/*\"",
"lint": "eslint ./app/**/*.{js,jsx}",
"build": "run-s build:*",
"build:tailwind": "yarn 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": "yarn build && run-p dev:*",
"dev:tailwind": "yarn 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 netlify dev",
"generate:tailwind": "npx tailwindcss -i ./styles/tailwind-input.css -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production netlify dev",
"analyze": "source-map-explorer 'public/build/**/*.js'"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@faker-js/faker": "^7.4.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@imgix/js-core": "^3.8.0",
"@netlify/functions": "^1.4.0",
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@remix-run/netlify": "^1.11.1",
"@remix-run/node": "^1.11.1",
"@remix-run/react": "^1.11.1",
"@remix-run/serve": "^1.11.1",
"@remix-run/server-runtime": "^1.11.1",
"@sindresorhus/slugify": "^2.1.0",
"@slack/web-api": "^6.8.0",
"airtable": "^0.11.6",
"autoprefixer": "^10.4.13",
"axios": "^1.2.3",
"bootstrap": "^4.6.0",
"calendar-link": "^2.4.0",
"classnames": "^2.3.1",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"dotenv": "^16.0.1",
"eslint": "^8.32.0",
"front-matter": "^4.0.2",
"graphql": "^16.5.0",
"graphql-request": "^5.1.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"luxon": "^3.2.1",
"markdown-it": "^13.0.1",
"mdast-util-toc": "^6.1.0",
"node-fetch": "^3.3.0",
"npm-run-all": "^4.1.5",
"only-allow": "^1.0.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.7.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.3",
"remark-attr": "^0.11.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"require-dir": "^1.2.0",
"sanitize-html": "^2.8.1",
"sass": "^1.57.1",
"tiny-invariant": "^1.2.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.9",
"@types/luxon": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/require-dir": "^1.0.2",
"@types/sanitize-html": "^2.8.0",
"prettier": "^2.8.3",
"source-map-explorer": "^2.5.2",
"tailwindcss": "^3.2.4",
"tsx": "^3.12.2",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
}
}