-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "widget-next",
"version": "3.0.0",
"private": true,
"scripts": {
"tsScript": "esbuild src/components/ScriptWidget/index.ts --bundle --outfile=public/widget.js",
"dev": "tsc && npm run tsScript && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^1.0.6",
"@prisma/client": "^4.5.0",
"axios": "^1.1.3",
"esbuild": "^0.15.11",
"handlebars": "^4.7.7",
"html2canvas": "^1.4.1",
"mustache-express": "^1.3.2",
"next": "12.3.1",
"nodemailer": "^6.8.0",
"phosphor-react": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"tailwind-scrollbar": "^2.1.0-preview.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@swc/jest": "^0.2.23",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/jest": "^29.2.0",
"@types/mustache-express": "^1.2.2",
"@types/node": "18.11.0",
"@types/nodemailer": "^6.4.6",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/validator": "^13.7.8",
"autoprefixer": "^10.4.12",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"jest": "^29.2.1",
"postcss": "^8.4.18",
"prisma": "^4.5.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.4"
}
}