-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.85 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.85 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "bloom-frontend",
"version": "0.1.0",
"private": true,
"resolutions": {
"cross-spawn": "^7.0.5",
"brace-expansion": "^2.0.2",
"systeminformation": "^5.27.14"
},
"engines": {
"node": ">=22.x"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "NODE_OPTIONS='-r newrelic' next start",
"https:proxy": "local-ssl-proxy --source 3010 --target 3000 --cert localhost.pem --key localhost-key.pem",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc -p tsconfig.json",
"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:headless-spec": "cypress run --headless true --browser chrome --spec $SPEC",
"cypress:coverage": "npx nyc report --reporter=text-summary",
"cypress:auth": "cypress run --spec \"cypress/integration/auth/**/*.cy.tsx\"",
"cypress:user-accounts": "cypress run --spec \"cypress/integration/user-accounts/**/*.cy.tsx\"",
"cypress:admin": "cypress run --spec \"cypress/integration/admin/**/*.cy.tsx\"",
"cypress:user-content": "cypress run --spec \"cypress/integration/user-content/**/*.cy.tsx\"",
"cypress:partners": "cypress run --spec \"cypress/integration/partners/**/*.cy.tsx\"",
"cypress:system": "cypress run --spec \"cypress/integration/system/**/*.cy.tsx\"",
"cypress:public": "cypress run --spec \"cypress/integration/public/**/*.cy.tsx\"",
"cypress:check-ungrouped": "node scripts/check-ungrouped-tests.js",
"check:translations": "node ./scripts/checkTranslation.js",
"check:links": "node ./scripts/checkLinks.mjs",
"postinstall": "husky",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/lab": "^7.0.1-beta.20",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"@next/third-parties": "16.2.1",
"@reduxjs/toolkit": "^2.11.2",
"@rollbar/react": "^1.0.0",
"@storyblok/react": "^5.4.22",
"@types/dompurify": "^3.0.5",
"@vercel/analytics": "^1.5.0",
"axios": "^1.14.0",
"brace-expansion": "^4.0.1",
"cross-spawn": "^7.0.0",
"date-fns": "^4.1.0",
"dompurify": "^3.3.3",
"firebase": "^12.11.0",
"gemoji": "^8.1.0",
"js-cookie": "^3.0.1",
"minimatch": "^10.2.4",
"newrelic": "^13.17.0",
"next": "16.2.1",
"next-intl": "^4.8.3",
"next-pwa": "^5.6.0",
"nextjs-hotjar": "^1.2.0",
"nuka-carousel": "^8.2.0",
"phone": "^3.1.71",
"react": "19.2.4",
"react-cookie-consent": "^10.0.1",
"react-dom": "19.2.4",
"react-international-phone": "^4.8.0",
"react-player": "^3.4.0",
"react-redux": "^9.2.0",
"rollbar": "^2.26.4",
"storyblok-rich-text-react-renderer": "^3.0.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.14.0",
"@eslint/eslintrc": "^3.3.5",
"@next/bundle-analyzer": "16.2.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.2",
"@types/newrelic": "^9.14.8",
"@types/node": "^25.5.0",
"@types/react": "19.2.14",
"babel-plugin-istanbul": "^7.0.0",
"cypress": "^15.13.0",
"dotenv": "^17.3.1",
"eslint": "9.39.2",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"knip": "^5.87.0",
"mailslurp-client": "^16.0.0",
"nyc": "^18.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.8.1",
"typescript": "^5.8.3"
}
}