-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "suisei-developer-portal",
"version": "0.1.0",
"scripts": {
"dev": "next dev -p 3003",
"build": "next build",
"start": "next start",
"prepare": "npx husky install && node .husky/link.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:report": "eslint --output-file eslint_report.json --format json ."
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@headlessui/react": "1.7.10",
"@heroicons/react": "1.0.6",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "3.15.2",
"daisyui": "2.50.0",
"minio": "7.0.32",
"next": "12.2.5",
"next-auth": "4.19.2",
"next-themes": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.3",
"@commitlint/config-conventional": "17.4.3",
"@types/minio": "7.0.15",
"@types/react": "18.0.28",
"autoprefixer": "10.4.13",
"eslint": "8.34.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "12.2.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"lint-staged": "12.5.0",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.2",
"prisma": "3.15.2",
"tailwindcss": "3.2.6",
"typescript": "4.9.5"
}
}