-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "portfolio",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx,json,css,scss}\"",
"format:fix": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,json,css,scss}\"",
"docker:build": "docker build -t local/portfolio .",
"docker:run": "docker rm /portfolio && docker run -p 3000:3000 --name portfolio local/portfolio"
},
"dependencies": {
"@types/node": "20.11.30",
"@types/react": "18.2.72",
"@types/react-dom": "18.2.22",
"autoprefixer": "10.4.19",
"change-case": "^5.4.4",
"classnames": "^2.5.1",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"immer": "^10.0.4",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.4.5",
"next": "14.1.4",
"postcss": "8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"react-if": "^4.1.5",
"react-resize-detector": "^10.0.1",
"react-use": "^17.5.0",
"sharp": "^0.33.3",
"tailwindcss": "3.4.2",
"typescript": "5.4.3",
"use-immer": "^0.9.0"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"raw-loader": "^4.0.2",
"sass": "^1.72.0"
}
}