-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "smart-type",
"version": "1.0.0",
"description": "A browser extension that enables users to create custom commands for text expansion.",
"main": "main.jsx",
"author": "Alexander Pérez",
"license": "MIT",
"type": "module",
"keywords": [
"browser",
"extension",
"text expansion",
"productivity"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sass": "sass src/scss/styles.scss src/css/styles.css --no-source-map",
"postcss": "postcss src/css/styles.css -o src/css/styles.min.css --no-map",
"build-sass": "npm run sass && npm run postcss && npm run build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"postcss": "^8.4.24",
"postcss-cli": "^10.1.0",
"sass": "^1.62.1",
"vite": "^4.1.0"
}
}