-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 2.56 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
{
"name": "cadence-cookbook",
"author": "Flow Blockchain",
"version": "5.5.0",
"description": "Cadence Cookbook",
"private": true,
"scripts": {
"dev": "next dev -p 3031",
"start": "next start",
"build": "next build",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"clear-all": "rm -rf node_modules .next out dist build",
"re-start": "rm -rf node_modules .next out dist build && yarn install && yarn dev",
"re-build": "rm -rf node_modules .next out dist build && yarn install && yarn build",
"re-build-test": "rm -rf node_modules .next out dist build && npm install && npm run build",
"cy": "cypress open --e2e",
"cy:headless": "cypress run",
"test": "jest --watch"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hello-pangea/dnd": "^16.3.0",
"@hookform/resolvers": "^3.3.1",
"@iconify/react": "^4.1.1",
"@mui/base": "^5.0.0-beta.13",
"@mui/lab": "^5.0.0-alpha.142",
"@mui/material": "^5.14.7",
"@mui/system": "^5.14.7",
"@mui/x-data-grid": "^6.12.0",
"@mui/x-date-pickers": "^6.12.0",
"@react-pdf/renderer": "^3.3.4",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.5.0",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"framer-motion": "^10.16.2",
"highlight.js": "^11.8.0",
"i18next": "^23.4.6",
"i18next-browser-languagedetector": "^7.1.0",
"lodash": "^4.17.21",
"mui-one-time-password-input": "^2.0.0",
"next": "^13.4.19",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-code-blocks": "^0.1.6",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-i18next": "^13.2.1",
"react-lazy-load-image-component": "^1.6.0",
"react-markdown": "^8.0.7",
"react-slick": "^0.29.0",
"react-uuid": "^2.0.0",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"simplebar-react": "^3.2.4",
"slick-carousel": "^1.8.1",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"swr": "^2.2.2",
"ts-jest": "^29.1.1",
"yet-another-react-lightbox": "^3.12.1",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.21",
"cypress": "^13.4.0",
"prettier": "^3.0.3"
}
}