davidepollicino commited on
Commit
b7230ed
·
verified ·
1 Parent(s): 40a5f40

Upload package.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. package.json +22 -0
package.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "next-todo-app",
3
+ "version": "1.0.0",
4
+ "scripts": {
5
+ "dev": "next dev",
6
+ "build": "next build",
7
+ "start": "next start",
8
+ "lint": "next lint"
9
+ },
10
+ "dependencies": {
11
+ "next": "^14.1.0",
12
+ "react": "^18.2.0",
13
+ "react-dom": "^18.2.0",
14
+ "typescript": "^5.3.3",
15
+ "@types/node": "^20.11.0",
16
+ "@types/react": "^18.2.0",
17
+ "@types/react-dom": "^18.2.0",
18
+ "autoprefixer": "^10.4.16",
19
+ "postcss": "^8.4.31",
20
+ "tailwindcss": "^3.3.0"
21
+ }
22
+ }