-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
72 lines (72 loc) · 1.66 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
{
"name": "kimia-ui",
"author": {
"name": "Enoch Ndika"
},
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap",
"lint": "next lint",
"prepare": "husky install"
},
"keywords": [
"ui library",
"react",
"components",
"tailwindcss",
"next",
"Next.js",
"layout",
"postcss",
"dashboard",
"admin dashboard"
],
"repository": {
"type": "git",
"url": "https://github.com/enochndika/kimia-UI.git"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^11.1.0",
"@reach/portal": "^0.13.0",
"formik": "^2.2.9",
"mdx-utils": "^0.2.0",
"next": "^12.0.7",
"react": "^17.0.2",
"react-content-loader": "^6.0.1",
"react-dom": "^17.0.2",
"react-dom-confetti": "^0.2.0",
"react-hook-form": "^7.6.4",
"react-live": "^2.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next-sitemap": "^1.6.203",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.0",
"typescript": "^4.5.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint '*/**/*.{js,jsx,ts,tsx}' --fix",
"prettier '*/**/*.{js,jsx}' --write"
]
}
}