-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "personal-portfolio-website",
"version": "3.0.0",
"description": "A personal portfolio site created for the repo owner (Aman Singh Bhogal.)",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"next dev\" \"stylelint\" \"typed-scss-modules './src/**/*.scss' --watch\"",
"devsafe": "rm -rf .next && pnpm dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./src/**/*.{js,ts,tsx}",
"format": "npx prettier . --write",
"lint-staged": "lint-staged",
"stylelint": "stylelint \"./src/**/*.scss\"",
"test": "playwright test",
"prepare": "husky",
"payload": "payload",
"generate:types": "payload generate:types",
"generate:importmap": "payload generate:importmap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asbhogal/Personal-Portfolio-Site.git"
},
"keywords": [],
"author": "Aman Singh Bhogal",
"license": "MIT",
"bugs": {
"url": "https://github.com/asbhogal/Personal-Portfolio-Site/issues"
},
"homepage": "https://www.amansinghbhogal.com/",
"dependencies": {
"@axe-core/playwright": "^4.10.1",
"@payloadcms/db-mongodb": "^3.1.0",
"@payloadcms/live-preview-react": "latest",
"@payloadcms/next": "latest",
"@payloadcms/payload-cloud": "latest",
"@payloadcms/plugin-form-builder": "latest",
"@payloadcms/plugin-nested-docs": "latest",
"@payloadcms/plugin-redirects": "latest",
"@payloadcms/plugin-search": "latest",
"@payloadcms/plugin-seo": "latest",
"@payloadcms/richtext-lexical": "latest",
"@payloadcms/storage-vercel-blob": "^3.7.0",
"@payloadcms/ui": "latest",
"@splidejs/react-splide": "^0.7.12",
"@vercel/analytics": "^0.1.11",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.5.1",
"jsonwebtoken": "9.0.2",
"mongodb": "^6.10.0",
"motion": "12.0.0-alpha.2",
"next": "15.0.3",
"payload": "latest",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.28.0",
"react-websitecarbon-badge": "^1.0.6",
"sharp": "0.32.6"
},
"devDependencies": {
"@innovixx/eslint-config": "3.0.1",
"@playwright/test": "^1.48.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.17.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"concurrently": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"sass": "^1.81.0",
"stylelint": "^16.10.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.9.0",
"typed-scss-modules": "^8.0.1",
"typescript": "^5.7.3"
},
"lint-staged": {
"**/*.scss": "stylelint --fix",
"**/*.{js,ts,jsx,tsx}": [
"eslint",
"bash -c tsc"
]
}
}