-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "Victor Gorchilov's portfolio website",
"repository": "https://github.com/ManiacMaxo/portfolio",
"author": "Victor Gorchilov <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "cd studio && yarn -s && npx @sanity/cli build ../public/studio -y",
"build": "next build",
"dev": "next",
"lint": "next lint",
"start": "next start",
"start:sanity": "cp .env ./studio/.env.development && cd studio && sanity start",
"type-check": "tsc --pretty --noEmit"
},
"dependencies": {
"classnames": "^2.3.2",
"formik": "^2.2.9",
"framer-motion": "^7.3.6",
"next": "^12.3.1",
"next-sanity": "^0.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"sass": "^1.54.9",
"sharp": "^0.31.0"
},
"devDependencies": {
"@sanity/block-content-to-react": "^3.0.0",
"@types/lru-cache": "^7.10.10",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.11",
"dotenv": "^16.0.2",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
}
}