-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.82 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"prepare": "husky install",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@headlessui/react": "^1.6.5",
"@prisma/client": "^3.15.1",
"@reach/dialog": "^0.17.0",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/vercel": "^1.5.1",
"@sendgrid/mail": "^7.7.0",
"@vercel/node": "^2.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"framer-motion": "^5.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"npm": "^9.7.1",
"quill": "^1.3.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight": "^0.14.0",
"react-messenger-customer-chat": "^0.8.0",
"react-quilljs": "^1.2.17",
"react-select": "^5.3.2",
"reading-time": "^1.5.0",
"remix-image": "^0.3.18",
"remix-utils": "^3.3.0",
"sib-api-v3-sdk": "^8.4.0",
"slugify": "^1.6.5",
"socket.io-client": "^4.5.1",
"spin-delay": "^1.2.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"@tailwindcss/typography": "^0.5.2",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"airbnb": "^0.0.2",
"autoprefixer": "^10.4.7",
"commitizen": "^4.2.4",
"concurrently": "^7.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-airbnb": "^0.0.1-security",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prisma": "^3.15.1",
"tailwindcss": "^3.0.24",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=18",
"npm": ">=8",
"yarn": "please use npm"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}