-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 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
{
"name": "codecoolture.com",
"version": "1.0.0",
"author": "Sergio Álvarez <sergio@codecoolture.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@mdx-js/loader": "3.1.1",
"@mdx-js/react": "3.1.1",
"@next/mdx": "16.1.6",
"@radix-ui/colors": "3.0.0",
"@vercel/analytics": "1.6.1",
"fathom-client": "3.7.2",
"front-matter": "4.0.2",
"lodash": "4.17.23",
"next": "16.1.6",
"next-mdx-remote-client": "^2.1.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "5.5.0",
"rehype-highlight": "7.0.2",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "4.0.1",
"zod": "4.2.1"
},
"devDependencies": {
"@types/lodash": "4.17.23",
"@types/marked": "6.0.0",
"@types/node": "25.0.10",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"cypress": "15.8.2",
"eslint": "9.39.2",
"eslint-config-next": "^16.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"feed": "5.1.0",
"marked": "17.0.1",
"prettier": "3.7.4",
"start-server-and-test": "2.1.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"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",
"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 .",
"start": "next start",
"test": "vitest",
"ts:exec": "tsx",
"typecheck": "tsc --noEmit"
}
}