-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 3.48 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": "session-token-website",
"description": "Session Token Website",
"license": "GPL-3.0-only",
"scripts": {
"build": "pnpm build:production",
"build-next": "NEXT_PUBLIC_SITE_ENV=production NODE_ENV=production next build",
"build-next:safe": "pnpm format-full && pnpm type-check && pnpm build-next",
"build:dev": "NEXT_PUBLIC_ENV_FLAG=dev pnpm build-next:safe",
"build:production": "NEXT_PUBLIC_ENV_FLAG=prd pnpm build-next:safe",
"build:qa": "NEXT_PUBLIC_ENV_FLAG=qa pnpm build-next:safe",
"build:staging": "NEXT_PUBLIC_ENV_FLAG=stg pnpm build-next:safe",
"clean": "rm -rf .next",
"dev": "NEXT_PUBLIC_ENV_FLAG=dev next",
"format": "pnpm prettier --list-different --write \"**/*.{css,html,js,json,md,ts,tsx}\"",
"format-full": "pnpm format && pnpm lint",
"lint": "eslint .",
"prepare": "husky install",
"start": "pnpm start:production",
"start-next": "NEXT_PUBLIC_SITE_ENV=production NODE_ENV=production next start --hostname 127.0.0.1",
"start:dev": "NEXT_PUBLIC_ENV_FLAG=dev pnpm start-next",
"start:production": "NEXT_PUBLIC_ENV_FLAG=prd pnpm start-next",
"start:qa": "NEXT_PUBLIC_ENV_FLAG=qa pnpm start-next",
"start:staging": "NEXT_PUBLIC_ENV_FLAG=stg pnpm start-next",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@portabletext/react": "3.0.12",
"@sanity/client": "6.15.5",
"@sanity/icons": "2.11.2",
"@sanity/image-url": "1.0.2",
"@sanity/orderable-document-list": "^1.2.1",
"@sanity/preview-kit": "5.0.33",
"@sanity/vision": "3.34.0",
"@splinetool/react-spline": "4.0.0",
"@splinetool/runtime": "1.7.4",
"@vercel/og": "^0.6.2",
"class-variance-authority": "^0.7.0",
"clsx": "2.1.0",
"cssnano": "6.1.0",
"framer-motion": "11.0.14",
"lodash": "^4.17.21",
"mini-xml": "^1.2.0",
"moment": "^2.30.1",
"next": "^14.2.4",
"next-sanity": "8.4.2",
"path-to-regexp": "^6.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intersection-observer": "9.8.1",
"react-smooth-collapse": "^2.1.2",
"react-tracked": "1.7.14",
"react-use": "^17.5.0",
"sanity": "3.34.0",
"sanity-plugin-asset-source-unsplash": "2.0.1",
"sanity-plugin-iframe-pane": "2.6.0",
"sass": "1.72.0",
"sharp": "0.32.6",
"suspend-react": "0.1.3",
"swiper": "11.0.7",
"tailwindcss": "^3.4.1",
"tailwindcss-selection-variant": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@types/node": "20.11.28",
"@types/react": "18.2.66",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"autoprefixer": "10.4.18",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "10.4.1",
"eslint-plugin-more": "^1.0.5",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "8.4.36",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "2.4.12",
"prettier-plugin-tailwindcss": "^0.6.4",
"typescript": "5.4.2"
},
"packageManager": "[email protected]+sha512.c2e60e7ed04e459591c982f2760cd8f7d1f48fe1ca4d46ccbbf8377df1eb2d077ace1e9d334b06250dddf23c03b4562858f77992b9a3bb4a93355aefd173df32"
}