-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "next dev",
"dev:test": "concurrently \"next dev\" \"npm run test:watch\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"prepare": "husky install",
"check-format": "prettier --write .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"ncu": "ncu",
"ncu:update": "ncu -u",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=20.11.0",
"yarn": "please-use-npm"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"@portabletext/react": "^3.1.0",
"@react-google-maps/api": "^2.19.3",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.53.0",
"@types/node": "22.2.0",
"@types/react-dom": "18.3.0",
"@typescript-eslint/parser": "^8.1.0",
"dayjs": "^1.11.12",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"markdown-it": "^14.1.0",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-sanity": "^9.4.5",
"nodemailer": "^6.9.14",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-paginate": "^8.2.0",
"react-player": "^2.16.0",
"react-select": "^5.8.0",
"sanity": "^3.53.0",
"sanity-plugin-iframe-pane": "^3.1.6",
"sanity-plugin-media": "^2.3.2",
"styled-components": "^6.1.12",
"typescript": "5.5.4"
},
"devDependencies": {
"@storybook/addon-a11y": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-onboarding": "^8.2.8",
"@storybook/addon-storysource": "^8.2.8",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.2.8",
"@storybook/nextjs": "^7.0.14",
"@storybook/react": "^8.2.8",
"@storybook/test": "^8.2.8",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@types/jest": "29.5.12",
"@types/markdown-it": "^14.1.2",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"autoprefixer": "^10.4.20",
"axe-core": "^4.10.0",
"chromatic": "^11.7.0",
"concurrently": "^8.2.2",
"cypress": "^13.13.2",
"cypress-axe": "^1.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-check-updates": "^17.0.6",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"storybook": "^8.2.8"
}
}