-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next dev",
"run": "next start",
"prettier": "prettier --write \"**/*.{ts,tsx,css,md,scss,html,json}\"",
"lint": "yarn run lint:prettier && yarn run lint:js",
"lint:js": "next lint",
"lint:prettier": "prettier --check \"**/*.{ts,tsx,css,md,scss,html,json}\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^2.1.13",
"@portabletext/react": "^3.0.2",
"@sanity/image-url": "^1.0.2",
"@sanity/ui": "^1.6.0",
"@sanity/vision": "^3.12.1",
"date-fns": "^2.11.1",
"framer-motion": "^10.16.4",
"gray-matter": "^4.0.2",
"next": "13.5.6",
"next-sanity": "^5.5.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"sanity": "^3.12.1",
"styled-components": "^6.1.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.6",
"@sanity/eslint-config-studio": "^3.0.1",
"@types/node": "^20.8.9",
"@types/react": "^18.2.32",
"eslint": "8.52.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.0.4",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"postcss": "^8",
"tailwindcss": "^3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}