-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.78 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
{
"name": "acecentre.org.uk",
"engines": {
"node": "20.x"
},
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest --forceExit",
"dev": "ENV=development next dev",
"dev:live": "USE_LIVE_DATA=true ENV=development next dev",
"build": "node ./scripts/pre-build.js && next build && node ./scripts/post-build.js",
"start": "next start",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:integration:open": "CYPRESS_BASE_URL=https://integration.acecentre.org.uk cypress open --config retries=0",
"cypress:prod:open": "CYPRESS_BASE_URL=https://acecentre.org.uk cypress open --config retries=0",
"lighthouse": "lhci autorun",
"plop": "plop",
"build-sitemap": "next-sitemap",
"dead-code": "node madge.js"
},
"dependencies": {
"@apollo/client": "^3.8.7",
"@chakra-ui/react": "2.5.1",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"@react-aria/focus": "3.10.1",
"@react-aria/interactions": "3.13.1",
"@react-aria/radio": "3.4.2",
"@react-aria/visually-hidden": "3.6.1",
"@react-stately/radio": "3.6.2",
"@sentry/nextjs": "^7.80.1",
"@slack/bolt": "3.12.2",
"@stripe/react-stripe-js": "2.1.0",
"@stripe/stripe-js": "2.1.11",
"@u-wave/react-vimeo": "0.9.10",
"async-redis": "2.0.0",
"dots-wrapper": "^3.11.4",
"framer-motion": "10.0.0",
"fuse.js": "7.0.0",
"graphql": "16.6.0",
"graphql-playground-middleware-express": "1.7.23",
"graphql-request": "6.1.0",
"jwt-decode": "4.0.0",
"linkedom": "0.14.22",
"lodash": "4.17.21",
"next": "13.2.1",
"next-iron-session": "4.2.0",
"next-usequerystate": "^1.7.3",
"node-fetch": "3.3.0",
"nprogress": "0.2.0",
"polyfill-object.fromentries": "1.0.1",
"posthog-js": "1.45.1",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-accessible-accordion": "5.0.0",
"react-color": "2.19.3",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-lite-youtube-embed": "2.3.52",
"turndown": "7.1.1"
},
"devDependencies": {
"@swc/core": "1.3.35",
"@swc/jest": "0.2.24",
"@swc/register": "0.1.10",
"@testing-library/cypress": "10.0.1",
"compare-versions": "^6.1.0",
"cypress": "13.2.0",
"dotenv": "^16.0.3",
"eslint": "8.34.0",
"eslint-config-next": "14.0.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-react": "7.32.2",
"got": "11.8.3",
"jest": "29.4.3",
"jest-css-modules-transform": "4.4.2",
"madge": "^7.0.0",
"next-sitemap": "4.0.2",
"nock": "13.3.0",
"plop": "4.0.0",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"typescript": "^5.0.0"
}
}