-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "nextjs-prixite",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint && eslint && prettier --check .",
"fix": "prettier --write ."
},
"pre-commit": [
"lint"
],
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.12",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.6.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-to-jsx": "^7.2.1",
"next": "13.5.4",
"next-share": "^0.20.0",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"sass": "^1.63.6",
"slick-carousel": "^1.8.1",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.8.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.12",
"@types/react-slick": "^0.23.10",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"typescript": "^5.0.2"
}
}