-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
50
51
52
53
{
"name": "ubuntu-portfolio",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=9",
"yarn": "please use npm instead of yarn",
"pnpm": "please use npm instead of pnpm"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"clean": "npx rimraf .next node_modules"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.16",
"classnames": "^2.3.2",
"eslint": "8.49.0",
"eslint-config-next": "13.5.2",
"lodash": "^4.17.21",
"lucide-react": "^0.460.0",
"next": "13.5.2",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/lodash": "^4.17.12",
"@types/prettier": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"rimraf": "^5.0.1"
}
}