-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.37 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "codedead.com",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build && node scripts/generate-sitemap.js",
"analyze": "ANALYZE=true next build",
"start": "next start",
"export": "next build && next export",
"lint": "yarn run eslint && yarn run stylelint",
"eslint": "next lint",
"stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "yarn prettier:check && yarn lint && yarn jest --passWithNoTests",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@mantine/carousel": "^7.17.4",
"@mantine/core": "^7.17.4",
"@mantine/hooks": "^7.17.4",
"@next/bundle-analyzer": "^15.3.1",
"@tabler/icons-react": "^3.31.0",
"embla-carousel-react": "^8.6.0",
"globby": "^14.1.0",
"gray-matter": "^4.0.3",
"next": "^15.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@eslint/js": "^9.24.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@next/eslint-plugin-next": "^15.3.1",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.12",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/react": "19.1.2",
"@types/xml2js": "^0.4.14",
"babel-loader": "^10.0.0",
"eslint": "^9.24.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"storybook": "^8.6.12",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^14.0.0",
"ts-jest": "^29.3.2",
"typescript": "5.8.3",
"typescript-eslint": "^8.30.1"
},
"packageManager": "yarn@4.9.1"
}