-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "varunraj-in",
"version": "1.0.1",
"scripts": {
"next-dev": "next dev",
"dev": "run-p contentlayer-dev next-dev",
"build": "yarn run contentlayer-build && yarn run build:books && next build && yarn run sitemap",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"contentlayer-dev": "contentlayer dev",
"contentlayer-build": "contentlayer build",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"test": "jest",
"commit": "cz",
"prepare": "husky install",
"sitemap": "next-sitemap",
"get:books": "node ./scripts/rss-to-json.js",
"build:books": "node ./scripts/books-info.js"
},
"dependencies": {
"@phosphor-icons/react": "^2.0.10",
"@tailwindcss/typography": "^0.5.9",
"clsx": "^1.2.1",
"contentlayer": "0.3.1",
"date-fns": "^2.30.0",
"next": "^13.4.9",
"next-contentlayer": "0.3.1",
"next-seo": "^6.1.0",
"next-sitemap": "^4.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"sass": "^1.69.4",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/cz-commitlint": "^17.5.0",
"@next/bundle-analyzer": "^13.4.9",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"rimraf": "^5.0.1",
"rss-parser": "^3.13.0",
"rss-to-json": "^2.1.1",
"rss-to-json-v2": "^1.0.12",
"start-server-and-test": "^2.0.0",
"storybook": "^7.0.26",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}