This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
{
"author": "Tuan Duc Tran <tuanductran.dev@gmail.com>",
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.5",
"@sentry/nextjs": "^7.91.0",
"@sentry/profiling-node": "^1.3.3",
"clsx": "^2.1.0",
"is-absolute-url": "^4.0.1",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.0.4",
"next-seo": "^6.4.0",
"next-sitemap": "^4.2.3",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"nprogress": "^0.2.0",
"preact": "^10.19.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-parallax-tilt": "^1.7.177",
"sharp": "^0.33.1",
"tailwind-merge": "^2.2.0"
},
"description": "HR Documentation is a document sharing platform build from nextra",
"devDependencies": {
"@babel/core": "^7.23.7",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@next/env": "^14.0.4",
"@next/eslint-plugin-next": "^14.0.4",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.10.8",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.17.0",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unicorn": "^50.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"postcss-focus-visible": "^9.0.1",
"postcss-import": "^16.0.0",
"prettier": "^3.1.1",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"sass": "^1.69.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
},
"license": "MIT",
"lint-staged": {
"*.+(js|jsx|ts|tsx|cjs|mjs)": [
"pnpm lint && pnpm lint:fix"
],
"*.+(js|jsx|ts|tsx|cjs|mjs|json|css|scss|md|mdx)": [
"pnpm prettier:check && pnpm prettier:write"
]
},
"name": "hrpenci.site",
"packageManager": "pnpm@8.15.4",
"scripts": {
"build": "NODE_ENV=production next build && next-sitemap",
"dev": "NODE_ENV=development next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,cjs,mjs,mdx,css,scss}\" --cache",
"prettier:write": "prettier --write \"**/*.{js,jsx,ts,tsx,cjs,mjs,mdx,css,scss}\" --cache",
"start": "next start"
},
"version": "2.1.2"
}