-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "todo-list",
"version": "1.0.0",
"description": "It is just a simple to do list, but in this one i use the best software development practices!",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "start-server-and-test dev http://localhost:3000/ cy:run",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.24.0",
"@types/node": "^20.1.1",
"next": "^13.4.1",
"node": "^20.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/react": "^18.2.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.59.5",
"cypress": "^12.14.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.7",
"start-server-and-test": "^2.0.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
}
}