-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "ash.bhimasani.com",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "rm -rf node_modules/.cache && next build && touch out/.nojekyll && touch out/CNAME && echo \"ash.bhimasani.com\" >> out/CNAME && git add --force out/ && git commit -S -m \"deploy ash.bhimasani.com\" && git push upstream `git subtree split --prefix out master`:gh-pages --force && git reset --hard HEAD~1",
"prettier": "prettier --write \"**/*.{ts,tsx,js,json,css,scss,yml,md}\""
},
"dependencies": {
"@juggle/resize-observer": "3.4.0",
"classnames": "2.5.1",
"framer-motion": "11.3.12",
"next": "14.2.5",
"next-seo": "6.5.0",
"pure-react-carousel": "1.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"sass": "1.77.8",
"swr": "2.2.5"
},
"devDependencies": {
"@types/node": "20.14.12",
"@types/react": "18.3.3",
"@types/resize-observer-browser": "0.1.11",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"babel-plugin-transform-define": "2.1.4",
"eslint": "9.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"stylelint": "16.7.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-prettier": "5.0.2",
"typescript": "5.5.4"
}
}