forked from codecoolture/codecoolture.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "codecoolture.com",
"version": "1.0.0",
"author": "Sergio Álvarez <sergio@codecoolture.com>",
"license": "MIT",
"private": true,
"dependencies": {
"@mapbox/rehype-prism": "0.8.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/mdx": "13.4.19",
"@radix-ui/colors": "2.0.1",
"fathom-client": "3.5.0",
"front-matter": "4.0.2",
"lodash": "4.17.21",
"next": "13.4.19",
"next-mdx-remote": "4.4.1",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.11.0",
"remark-unwrap-images": "3.0.1",
"zod": "3.21.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.4.13",
"@types/jest": "29.5.4",
"@types/lodash": "4.14.200",
"@types/marked": "5.0.2",
"@types/node": "16.11.19",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cypress": "12.17.4",
"eslint": "8.46.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.1",
"feed": "4.2.2",
"jest": "29.6.4",
"marked": "4.2.12",
"prettier": "2.8.8",
"start-server-and-test": "2.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.1.6"
},
"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": "TS_NODE_PROJECT=\"tsconfig.cli.json\" node node_modules/.bin/ts-node -T",
"typecheck": "tsc --noEmit"
}
}