-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "navn-r.github.io",
"version": "3.0.0",
"type": "module",
"author": "Navinn Ravindaran",
"description": "Portfolio Website",
"license": "Unlicense",
"homepage": "https://github.com/navn-r/navn-r.github.io#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/navn-r/navn-r.github.io.git"
},
"bugs": {
"url": "https://github.com/navn-r/navn-r.github.io/issues"
},
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"serve": "vite preview",
"lint": "svelte-check --tsconfig tsconfig.json --fail-on-warnings",
"format": "prettier --write src",
"prepare": "husky install",
"precommit": "lint-staged"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.69.5",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"lint-staged": {
"src/*": [
"npm run lint",
"npm run format"
]
}
}