-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.83 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
{
"private": true,
"engines": {
"node": ">=16.16.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"studio:dev": "pnpm --dir studio dev",
"studio:deploy": "pnpm dlx vercel env pull && pnpm --dir studio deploy",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@mdx-js/loader": "^2.1.3",
"@mdx-js/react": "^2.1.3",
"@next/mdx": "^12.3.1",
"@portabletext/react": "^1.0.6",
"@sanity/image-url": "^1.0.1",
"@sanity/webhook": "^2.0.0",
"@types/react-transition-group": "^4.4.5",
"classnames": "^2.3.1",
"date-fns": "^2.29.1",
"eslint-config-prettier": "^8.5.0",
"next": "13.0.2",
"next-mdx-remote": "^4.4.1",
"next-sanity": "^0.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"sass": "^1.55.0",
"swiper": "^9.1.0",
"tailwindcss": "^3.3.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "~18.0.35",
"autoprefixer": "^10.4.8",
"babel-plugin-inline-react-svg": "^2.0.1",
"cypress": "^10.9.0",
"eslint": "8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "13.0.2",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.1.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.21",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix",
"pnpm format:fix"
]
}
}