-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "mood-map",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"test": "jest",
"cypress:open": "cypress open",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.7.2",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/auth-ui-shared": "^0.1.6",
"@supabase/supabase-js": "^2.26.0",
"animal-avatar-generator": "^1.1.0",
"encoding": "^0.1.13",
"eslint-config-next": "13.4.7",
"next": "^13.4.7",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-svg-blob": "^0.3.1",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "18.2.14",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"cypress": "^12.16.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-jest": "^27.2.2",
"husky": "^8.0.0",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"supabase": "^1.77.5",
"ts-jest": "^29.1.1",
"typescript": ">=3.3.1 <5.1.0"
}
}