-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "cft-website-next",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"cypress:ui": "cypress open",
"test": "cypress run",
"test:unit": "jest"
},
"dependencies": {
"@helmturner/recma-next-static-images": "^1.1.0",
"@mdx-js/loader": "^2.1.5",
"@mdx-js/react": "^2.1.5",
"@next/mdx": "^12.3.1",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-remark": "^2.1.0",
"recma-nextjs-static-props": "^1.0.0",
"rehype-format": "^4.0.1",
"rehype-sanitize": "^5.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"sharp": "^0.31.2",
"unified": "^10.1.2",
"yaml": "^2.1.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"autoprefixer": "^10.4.7",
"cypress": "^10.3.0",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"jest": "^29.3.1",
"mdast-util-to-hast": "^12.1.1",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"tailwindcss": "^3.1.2",
"ts-jest": "^29.0.3",
"typescript": "^4.7.2"
}
}