-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "interactive-resume",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check .",
"types:generate": "npx sanity@latest schema extract && npx sanity@latest typegen generate",
"types:check": "tsc --noEmit",
"deploy:graphql": "npx sanity@latest graphql deploy",
"deploy:vercel": "npx vercel@latest --prod"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@iconify/react": "^5.0.2",
"@mui/material": "^6.1.4",
"@mui/material-nextjs": "^6.1.4",
"@next/third-parties": "^15.0.2",
"@sanity/icons": "^3.4.0",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.58.0",
"next": "14.2.13",
"next-sanity": "^9.5.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"sanity": "^3.58.0",
"sass": "^1.79.4",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"prettier": "^3.3.3",
"typescript": "^5"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}