-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"private": true,
"description": "",
"repository": "https://github.com/jml312/portfolio",
"author": "Josh Levy",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"sanity-start": "cd sanity && sanity start",
"sanity-deploy": "cd sanity && sanity deploy",
"sitemap-gen": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-sitemap.mjs",
"pageviews-gen": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-pageviews.mjs",
"postbuild": "npm run sitemap-gen && npm run pageviews-gen"
},
"dependencies": {
"@fontsource/ibm-plex-sans": "^4.5.11",
"@hcaptcha/react-hcaptcha": "^1.1.0",
"@portabletext/react": "^1.0.6",
"@react-three/drei": "^8.16.5",
"@react-three/fiber": "^7.0.26",
"@sanity/client": "^2.23.2",
"@stripe/stripe-js": "^1.29.0",
"cookie": "^0.5.0",
"country-flag-icons": "^1.5.5",
"detect-browser": "^5.3.0",
"framer-motion": "^6.4.3",
"fuse.js": "^6.6.2",
"is-ip": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"next": "^12.2.2",
"next-seo": "^4.26.0",
"next-themes": "^0.0.15",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-click-away-listener": "^2.0.5",
"react-code-blocks": "^0.0.9-0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.24.1",
"react-icons": "^4.3.1",
"react-toastify": "^9.0.1",
"smoothscroll-polyfill": "^0.4.4",
"stripe": "^9.1.0",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.3",
"autoprefixer": "^10.4.7",
"bad-words": "^3.0.4",
"dotenv": "^16.0.1",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"reading-time": "^1.5.0",
"slugify": "^1.6.5"
},
"prettier": {
"arrowParens": "always",
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none"
}
}