-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 KB
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
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"start:local": "next build && next start",
"lint": "next lint",
"test": "jest",
"e2e": "yarn playwright test",
"test:all": "yarn jest && yarn e2e",
"export": "next export",
"analyze": "ANALYZE=true yarn build"
},
"dependencies": {
"@notionhq/client": "^2.2.2",
"@types/node": "18.11.11",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"date-fns": "^2.29.3",
"dotenv": "^16.4.5",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"got": "11",
"lqip-modern": "^2.0.0",
"next": "13.0.6",
"notion-client": "^7.10.0",
"p-memoize": "^7.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-inlinesvg": "^3.0.1",
"react-notion-x": "^7.10.0",
"sharp": "^0.31.2",
"styled-components": "^5.3.6",
"swr": "^2.0.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.4",
"@playwright/test": "^1.47.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.5.12",
"@types/lqip-modern": "^1.1.2",
"@types/styled-components": "^5.1.26",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"next-router-mock": "^0.9.13",
"next-sitemap": "^4.0.5",
"prettier": "^2.8.1",
"ts-node": "^10.9.2"
}
}