-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
{
"private": true,
"sideEffects": false,
"version": "1.0.0",
"description": "IT5090 Capstone Project: Telugu Badminton Club of Canterbury",
"scripts": {
"build": "npm run build:css && remix build",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"start": "remix-serve build",
"lint": "eslint \"app/**/*.{js,jsx,ts,tsx}\" --quiet",
"lint-fix-dry-run": "eslint \"app/**/*.{js,jsx,ts,tsx}\" --fix-dry-run",
"lint-fix": "eslint \"app/**/*.{js,jsx,ts,tsx}\" --fix",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/tailwind.css",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/tailwind.css"
},
"dependencies": {
"@remix-run/node": "^1.7.5",
"@remix-run/react": "^1.7.5",
"@remix-run/serve": "^1.7.5",
"isbot": "^3.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudinary/react": "^1.5.0",
"@cloudinary/url-gen": "^1.8.6",
"@remix-run/dev": "^1.7.5",
"@remix-run/eslint-config": "^1.7.5",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.6.2",
"intl-parse-accept-language": "^1.0.0",
"postcss": "^8.4.18",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
},
"prettier": {
"printWidth": 72
}
}