-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.62 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
{
"private": true,
"scripts": {
"build": "next build",
"prebuild:ci": "npx rimraf blazing-scripts",
"build:ci": "node scripts/buildBlazingScripts.mjs",
"ci:createSocialImage": "node blazing-scripts/createSocialImage.js",
"cli:createSocialImage": "node -r esbuild-register scripts/createSocialImage.ts",
"decrypt": "node decrypt",
"dev": "next dev",
"encrypt": "node encrypt",
"format": "npx prettier --write . && npm run lint -- --fix",
"lint": "next lint",
"start": "next start",
"test:hello:secrets": "node -r dotenv/config scripts/helloSecrets",
"test:workflow": "node -r dotenv/config scripts/manualWorkflow.mjs"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@portabletext/react": "^2.0.0",
"@sanity/client": "^6.12.3",
"@sanity/document-internationalization": "^1.1.1",
"@sanity/image-url": "^1.0.2",
"@sanity/preview-url-secret": "^1.6.1",
"@sanity/visual-editing": "^1.1.0",
"@segment/snippet": "^4.15.3",
"@tailwindcss/forms": "^0.5.3",
"@vercel/speed-insights": "^1.0.9",
"classnames": "^2.3.2",
"cryptr": "^6.0.3",
"date-fns": "^2.29.3",
"groqd": "^0.0.4",
"i18next": "^22.0.6",
"i18next-react-postprocessor": "^3.1.0",
"jsdom": "^20.0.3",
"libphonenumber-js": "^1.10.14",
"lodash.orderby": "^4.6.0",
"lucide-react": "^0.102.0",
"next": "13.0.5",
"next-intl": "^2.9.1",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-i18next": "^12.0.0",
"react-spring-bottom-sheet": "^3.4.1",
"rxjs": "^7.8.1",
"sanity": "3.28.0",
"sanity-plugin-internationalized-array": "^1.10.8",
"styled-components": "^5.3.6",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.13",
"chrome-aws-lambda": "^10.1.0",
"dotenv": "^16.0.3",
"esbuild": "^0.15.15",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-replace": "^1.3.0",
"esbuild-register": "^3.4.1",
"eslint": "^8.28.0",
"eslint-config-next": "^13.0.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"puppeteer": "^19.3.0",
"puppeteer-core": "^19.3.0",
"tailwindcss": "^3.2.4",
"type-fest": "^3.2.0",
"typescript": "^5.3.3",
"write-file-atomic": "^5.0.0"
}
}