-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
55
{
"name": "pydaydotcl",
"version": "2.0.1",
"description": "PyDay Chile 2025 - Evento anual gratuito que reúne a la comunidad Python en distintas ciudades de Chile.",
"private": true,
"author": "María-Fernanda marifer.villalobos@pythonchile.cl",
"contributors": [
"Liliana Garmendia liliana.garmendia@pythonchile.cl"
],
"keywords": [
"Python",
"Chile",
"PyDay",
"evento",
"comunidad",
"talleres",
"charlas",
"networking"
],
"homepage": "https://pyday.cl/",
"repository": {
"type": "git",
"url": "git+https://github.com/python-chile/PyDay"
},
"bugs": {
"url": "https://github.com/python-chile/PyDay/issues"
},
"license": "MIT",
"scripts": {
"init": "npm run build && npm run start",
"dev": "next dev --turbopack",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"clean-build": "rd /s /q .next && npm run build && xcopy /E /I public\\images .next\\static\\images"
},
"dependencies": {
"@lottiefiles/dotlottie-react": "^0.13.5",
"firebase": "^11.6.0",
"framer-motion": "^12.8.0",
"next": "^15.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"sharp": "^0.34.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"tailwindcss": "^4.1.4"
}
}