-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.52 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
{
"name": "next-provisioner",
"version": "0.0.0",
"packageManager": "pnpm@9.15.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev -p 7777",
"build": "next build && make sitemap",
"start": "next start -p 7777",
"export": "next export",
"biome:fix": "biome format --write .",
"tsc:ci": "tsc --strict",
"lint:ci": "biome ci --reporter=github",
"lint:fix": "biome check --fix .",
"lint:css": "stylelint ./src/**/*.css",
"test:ci": "jest --passWithNoTests",
"types:contentful": "export $(cat .env.local | sed '/^#/d; s/[$\"]//g'); cf-content-types-generator -s $CONTENTFUL_SPACE_ID -t $CONTENTFUL_CMA_TOKEN -o src/contentful/types -X && biome format --write src/contentful/types"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^16.0.1",
"@contentful/rich-text-types": "^17.0.0",
"@faker-js/faker": "^9.3.0",
"@jest/types": "^29.6.3",
"@next/third-parties": "^15.1.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.62.8",
"classnames": "^2.5.1",
"contentful": "^11.3.3",
"gsap": "^3.12.5",
"html-react-parser": "^5.2.1",
"jest-mock": "^29.7.0",
"next": "^15.1.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.2",
"postcss-syntax": "^0.36.2",
"react": "^19.0.0",
"react-aria": "^3.36.0",
"react-dom": "^19.0.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.54.1",
"react-intersection-observer": "^9.14.0",
"react-player": "^2.16.0",
"react-toastify": "^11.0.0",
"resend": "4.0.1",
"schema-dts": "^1.1.2",
"stylelint-webpack-plugin": "^5.0.1",
"swiper": "^11.1.15",
"tslib": "^2.8.1",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-google-recaptcha": "^2.1.9",
"cf-content-types-generator": "^2.15.5",
"csstype": "^3.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-is": "^19.0.0",
"stylelint": "^16.12.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0"
}
}