-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "profile",
"version": "1.0.0",
"private": true,
"author": "arthur",
"description": "my personal profile website",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"fix-code": "prettier --write src/**/*.ts{,x}",
"check-eslint": "eslint src/**/*.ts{,x}"
},
"lint-staged": {
"*.(ts|tsx)": [
"prettier --write",
"eslint --quiet --fix"
]
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"classnames": "^2.3.2",
"next": "^13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@styled-jsx/plugin-sass": "^4.0.2",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react-slick": "^0.23.10",
"@types/styled-jsx": "^3.4.4",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
}
}