-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.02 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": "buburnusantara.com",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"predeploy": "npm run build",
"format": "prettier --check .",
"lint": "eslint --ext .ts src/"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.13",
"eslint": "8.53.0",
"eslint-config-next": "14.0.1",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"lint-staged": "^15.0.0",
"postcss": "^8.4.19",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"sass": "^1.56.1",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"swiper": "^8.4.4"
}
}