-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "taws-front",
"private": false,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"mobile": "vite --host",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix && git add .",
"precommit-msg": "echo 'pre-commit: checking commit message'"
},
"dependencies": {
"@material-tailwind/react": "^2.1.9",
"@tabler/icons-react": "^3.11.0",
"autoprefixer": "^10.4.19",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"react-social-icons": "^6.17.0",
"tailwindcss": "^3.4.6",
"taws-front": "file:"
},
"pre-commit": [
"precommit-msg",
"format"
],
"devDependencies": {
"@eslint/js": "^9.7.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.8.0",
"pre-commit": "^1.2.2",
"prettier": "3.3.3",
"tailwind-scrollbar": "^3.1.0",
"vite": "^5.4.7"
}
}