-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"format": "npx prettier --write . --ignore-path .gitignore",
"lint": "next lint -- --ignore-path .gitignore",
"lint:fix": "npm run format && npm run lint -- --fix",
"start": "next start",
"type-check": "tsc --noEmit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@portabletext/react": "3.0.11",
"@sanity/client": "^6.8.6",
"@sanity/demo": "1.0.2",
"@sanity/vision": "3.20.0",
"@tailwindcss/typography": "0.5.10",
"framer-motion": "^10.16.16",
"next": "14.0.3",
"next-sanity": "5.5.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"sanity": "3.20.0",
"sanity-plugin-iframe-pane": "2.6.1",
"styled-components": "6.1.1"
},
"devDependencies": {
"@types/react": "18.2.37",
"autoprefixer": "10.4.16",
"eslint": "8.53.0",
"eslint-config-next": "14.0.3",
"eslint-plugin-simple-import-sort": "10.0.0",
"postcss": "8.4.31",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "2.4.6",
"prettier-plugin-tailwindcss": "0.5.7",
"tailwindcss": "3.3.5",
"typescript": "5.2.2"
},
"engines": {
"node": ">=16"
}
}