-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
92 lines (92 loc) · 2.85 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
92
{
"name": "bloom-frontend",
"version": "0.1.0",
"private": true,
"resolutions": {
"@types/react": "^18.3.3",
"redux": "^5.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "NODE_OPTIONS='-r @newrelic/next' next start",
"https:proxy": "local-ssl-proxy --source 3010 --target 3000 --cert localhost.pem --key localhost-key.pem",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc",
"format": "prettier . --write",
"format:precommit": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run --headless true --browser chrome",
"cypress:coverage": "npx nyc report",
"check:translations": "node ./scripts/checkTranslation.js",
"check:links": "node ./scripts/checkLinks.mjs",
"postinstall": "husky",
"prepare": "husky"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.0",
"@mui/lab": "^5.0.0-alpha.171",
"@mui/material": "^5.16.1",
"@newrelic/next": "^0.10.0",
"@reduxjs/toolkit": "^2.2.7",
"@storyblok/react": "^3.0.0",
"@vercel/analytics": "^1.1.1",
"axios": "^1.7.7",
"firebase": "^10.7.1",
"gemoji": "^8.1.0",
"js-cookie": "^3.0.1",
"newrelic": "^12.6.0",
"next": "^14.2.15",
"next-intl": "^3.17.1",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "^8.1.0",
"nextjs-hotjar": "^1.2.0",
"nuka-carousel": "^7.0.0",
"phone": "^3.1.53",
"react": "^18.3.1",
"react-cookie-consent": "^9.0.0",
"react-dom": "^18.3.1",
"react-international-phone": "^4.0.4",
"react-player": "^2.13.0",
"react-redux": "^9.1.2",
"storyblok-rich-text-react-renderer": "^2.9.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@builder.io/partytown": "^0.10.2",
"@cypress/code-coverage": "^3.12.44",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@next/bundle-analyzer": "^14.0.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.2",
"@types/newrelic": "^9.14.3",
"@types/react": "18.3.3",
"babel-plugin-istanbul": "^7.0.0",
"cypress": "^13.2.0",
"dotenv": "^16.0.3",
"eslint": "8.56.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"istanbul-lib-coverage": "^3.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mailslurp-client": "^15.7.5",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"ts-jest": "^29.2.0",
"typescript": "5.3.3"
}
}