-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "tatiaris",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@azure/cognitiveservices-computervision": "^8.2.0",
"@geist-ui/react": "^2.2.5",
"@geist-ui/react-icons": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vercel/analytics": "^1.2.1",
"async": "^3.2.5",
"babel-plugin-styled-components": "^2.1.4",
"cookie-cutter": "^0.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"html2canvas": "^1.4.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mongodb": "^6.3.0",
"next": "^14.1.0",
"next-auth": "^4.24.6",
"next-connect": "^1.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"spotify-web-api-node": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/react": "^18.2.55",
"eslint-config-next": "^14.1.0",
"typescript": "^5.3.3"
}
}