-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "cohere-email",
"private": true,
"version": "1.0.0",
"type": "module",
"author": {
"name": "Tomeu Cabot",
"email": "[email protected]",
"url": "https://tomtobac.dev"
},
"scripts": {
"dev": "vite",
"build": "npm run build:css && tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src public",
"generate": "scaffdog generate",
"build:css": "tailwindcss -i ./public/content.css -o ./public/output.css -c ./tailwind.extension.config.cjs"
},
"dependencies": {
"classnames": "^2.3.2",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2"
},
"devDependencies": {
"@types/chrome": "^0.0.200",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"scaffdog": "^2.4.0",
"tailwindcss": "^3.2.1",
"typescript": "^4.6.4",
"vite": "^3.2.0"
}
}