-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 855 Bytes
/
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
{
"name": "wobsite",
"private": true,
"scripts": {
"build": "next build && npm run feed",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"test": "jest",
"feed": "node ./scripts/rss.js"
},
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^4.0.18",
"next": "12.0.7",
"next-mdx-remote": "^3.0.8",
"next-remote-watch": "^1.0.0",
"open-props": "^1.0.12",
"react": "17.0.2",
"react-dom": "17.0.2",
"rehype-highlight": "^6.0.0",
"rss": "^1.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^27.4.2",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-plugin-testing-library": "^5.0.1",
"jest": "^27.4.3"
}
}