-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
54
55
56
57
58
59
60
{
"name": "spj-v2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && next lint --fix",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check && yarn run build"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"gsap": "^3.9.1",
"isomorphic-unfetch": "^3.1.0",
"lottie-react-web": "^2.2.2",
"next": "12.1.0",
"next-pwa": "^5.4.6",
"next-seo": "^5.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-gsap": "^3.2.1",
"react-hot-toast": "^2.2.0",
"react-scrollmagic": "^2.3.0",
"react-share": "^4.4.0",
"react-slick": "^0.28.1",
"sharp": "^0.30.3"
},
"devDependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/styled-components": "^5.1.24",
"autoprefixer": "^10.4.3",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"postcss": "^8.4.11",
"prettier": "^2.6.0",
"styled-components": "^5.3.3",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
}
}