-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.2 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
68
69
70
71
72
{
"name": "mrskiro.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"lint": "run-s -c lint:*",
"lint:eslint": "next lint --dir .",
"lint:eslint:fix": "next lint --dir . --fix",
"lint:html": "markuplint \"./src/**/*.tsx\"",
"lint:tsc": "tsc --noEmit",
"lint:ls": "ls-lint",
"prepare": "husky install",
"test": "jest",
"test:e2e": "playwright test",
"update-snapshots": "yarn test:e2e --update-snapshots",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@notionhq/client": "2.2.3",
"@sentry/nextjs": "7.50.0",
"next": "13",
"prismjs": "1.28.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0",
"rss-parser": "3.12.0",
"styled-components": "5.3.5"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@ls-lint/ls-lint": "2.0.0",
"@markuplint/jsx-parser": "3.6.1",
"@markuplint/react-spec": "3.6.1",
"@playwright/test": "^1.30.0",
"@storybook/addon-a11y": "7.0.9",
"@storybook/addon-essentials": "7.0.9",
"@storybook/addon-interactions": "7.0.9",
"@storybook/addon-links": "7.0.9",
"@storybook/nextjs": "7.0.9",
"@storybook/react": "7.0.9",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest-axe": "3.5.5",
"@types/node": "18.0.0",
"@types/prismjs": "1.26.0",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.38.0",
"eslint": "8.57.0",
"eslint-config-next": "14.1.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-storybook": "0.6.12",
"husky": "8.0.0",
"jest": "29.5.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.5.0",
"markuplint": "3.7.0",
"next-sitemap": "3.1.49",
"npm-run-all": "4.1.5",
"storybook": "7.0.9",
"typescript": "5.1.6"
}
}