-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "webuild-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "next lint",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"test": "jest",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ./**.{json,js,ts,tsx,md}"
},
"dependencies": {
"@moai/core": "^1.2.0",
"@mozilla/readability": "^0.4.1",
"base-64": "^1.0.0",
"dompurify": "^2.2.9",
"jsdom": "^16.6.0",
"next": "^12.1.6",
"next-plausible": "^1.7.0",
"next-themes": "^0.0.15",
"node-cache": "^5.1.2",
"open-graph-scraper": "^4.9.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-loading-skeleton": "^2.2.0",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/base-64": "^1.0.0",
"@types/dompurify": "^2.2.2",
"@types/jsdom": "^16.2.12",
"@types/react": "^17.0.11",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"organize-imports-cli": "^0.8.0",
"prettier": "^2.3.1",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"organize-imports-cli",
"prettier --write"
],
"**/*": [
"prettier --write --ignore-unknown"
]
}
}