-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
61
62
63
64
65
66
67
{
"name": "web2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:debug": "DEBUG=* next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"cypress-install": "cypress install",
"cypress-open": "cypress open",
"test:watch": "jest --watch",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@prisma/client": "^4.9.0",
"@splitbee/web": "^0.3.0",
"@types/jest": "^29.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-icons": "^3.0.0",
"@vercel/analytics": "^0.1.3",
"clsx": "latest",
"date-fns": "^2.29.0",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"hamburger-react": "^2.5.0",
"next": "13.1.2",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-photo-album": "^2.3.0",
"reading-time": "^1.5.0",
"sass": "^1.57.1",
"swr": "1.3.0",
"typescript": "4.9.4",
"use-sound": "^4.0.1",
"yet-another-react-lightbox": "^3.15.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/mdx": "^2.0.10",
"autoprefixer": "^10.4.13",
"cypress": "^12.3.0",
"husky": "^8.0.3",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"postcss": "^8.4.21",
"prisma": "^4.9.0",
"tailwindcss": "^3.2.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}