-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "codecoolture.com",
"version": "1.0.0",
"author": "Sergio Álvarez <sergio@codecoolture.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@mdx-js/loader": "3.0.1",
"@mdx-js/react": "3.0.1",
"@next/mdx": "15.0.4",
"@radix-ui/colors": "2.1.0",
"@vercel/analytics": "1.4.1",
"fathom-client": "3.5.0",
"front-matter": "4.0.2",
"lodash": "4.17.21",
"next": "15.0.4",
"next-mdx-remote": "5.0.0",
"prismjs": "1.29.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.3.0",
"rehype-highlight": "7.0.1",
"remark-gfm": "4.0.0",
"remark-unwrap-images": "4.0.1",
"zod": "3.22.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "15.0.3",
"@types/jest": "29.5.4",
"@types/lodash": "4.14.200",
"@types/marked": "5.0.2",
"@types/node": "20.12.11",
"@types/react": "18.3.14",
"@types/react-dom": "18.3.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cypress": "12.17.4",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.3",
"feed": "4.2.2",
"jest": "29.6.4",
"marked": "4.3.0",
"prettier": "3.2.5",
"start-server-and-test": "2.0.8",
"ts-jest": "29.1.5",
"tsx": "4.9.3",
"typescript": "5.4.5"
},
"scripts": {
"analyze": "yarn lint && yarn typecheck",
"build": "yarn build:rss && next build",
"build:rss": "NODE_ENV=development yarn ts:exec ./bin/rss/index.ts",
"ci:test": "yarn test --runInBand",
"ci:test:acc": "yarn build && yarn start-server-and-test start 3000 'cypress run'",
"cy:open": "start-server-and-test dev 3000 'cypress open'",
"cy:run": "start-server-and-test dev 3000 'cypress run'",
"dev": "next dev",
"lint": "eslint --ext .tsx --ext .ts .",
"start": "next start",
"test": "jest",
"ts:exec": "tsx",
"typecheck": "tsc --noEmit"
}
}