-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "empareja-las-cartas",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run test:e2e && npm run test:unitary",
"test:e2e": "playwright test -c tests/e2e/playwright.config.ts",
"test:unitary": "playwright test -c tests/unitary/playwright.config.ts"
},
"dependencies": {
"@auth0/nextjs-auth0": "3.5.0",
"@upstash/redis": "1.21.0",
"@vercel/og": "0.5.2",
"canvas-confetti": "1.6.0",
"next": "14.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.2"
},
"devDependencies": {
"@playwright/test": "1.42.1",
"@types/canvas-confetti": "1.6.0",
"@types/node": "18.15.10",
"@types/react": "18.0.30",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"postcss": "8.4.21",
"tailwindcss": "3.2.7",
"ts-standard": "12.0.2"
}
}