forked from tri2820/muer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.68 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
{
"name": "muer",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"e2e-test": "cypress run",
"format": "prettier --write .",
"generate:css": "npx tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"ntl:ci": "netlify dev",
"start": "cross-env NODE_ENV=production netlify dev",
"selfhost": "dotenv remix-serve build",
"typecheck": "tsc -b"
},
"prettier": {},
"eslintIgnore": [
"/netlify/functions/server",
"/node_modules",
"/public/build",
"/server/build"
],
"dependencies": {
"@extractus/article-extractor": "^7.2.16",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@netlify/functions": "^1.6.0",
"@remix-run/netlify": "^1.6.8",
"@remix-run/node": "^1.6.8",
"@remix-run/react": "^1.6.8",
"@supabase/auth-helpers-remix": "^0.2.1",
"@supabase/supabase-js": "^2.29.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@testing-library/cypress": "^8.0.3",
"async-mutex": "^0.4.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cypress": "^10.4.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"fake-useragent": "^1.0.1",
"fast-xml-parser": "^4.2.5",
"google-news-json": "^2.1.0",
"jotai": "^2.2.2",
"lottie-react": "^2.4.0",
"overlayscrollbars": "^2.2.1",
"overlayscrollbars-react": "^0.5.1",
"react": "^17.0.2",
"react-aria-components": "^1.0.0-alpha.4",
"react-dom": "^17.0.2",
"react-player": "^2.12.0",
"react-range": "^1.8.14",
"react-resizable": "^3.0.5",
"remix-utils": "^6.4.1",
"tailwindcss-animated": "^1.0.1",
"tiny-invariant": "^1.2.0",
"zod": "^3.21.4",
"zodix": "^0.4.1"
},
"devDependencies": {
"@remix-run/dev": "^1.6.8",
"@remix-run/eslint-config": "^1.6.8",
"@remix-run/serve": "^1.18.1",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.1",
"@types/react": "^17.0.62",
"@types/react-dom": "^17.0.9",
"@types/react-resizable": "^3.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"netlify-plugin-cypress": "^2.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.3.2",
"tailwindcss-font-inter": "^3.0.1",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}