-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "bd-landing-revamp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "bash scripts/lint.sh",
"test": "jest",
"prettier": "prettier 'src/**/*.{ts,tsx}'",
"prettier:fix": "yarn prettier --write"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@isaacs/ttlcache": "^1.4.1",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/system": "^5.15.9",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"framer-motion": "^11.0.5",
"next": "^14.1.0",
"next-translate": "^2.6.2",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-slick": "^0.30.2",
"sharp": "^0.33.2",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@emotion/jest": "^11.11.0",
"@stylistic/eslint-plugin": "^1.6.2",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "20.11.19",
"@types/ramda": "^0.29.10",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/react-slick": "^0.23.13",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-playwright": "^1.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^15.2.2",
"next-translate-plugin": "^2.6.2",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.2",
"ts-unused-exports": "^10.0.1",
"typescript": "^5.3.3"
}
}