-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
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
{
"name": "cmdk-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm -F 'cmdk-website^...' build && next build",
"start": "next start",
"lint": "eslint --ext .tsx"
},
"dependencies": {
"@radix-ui/react-popover": "^0.1.6",
"cmdk": "workspace:*",
"copy-to-clipboard": "^3.3.1",
"framer-motion": "^6.5.1",
"next": "14.1.1",
"next-seo": "^5.5.0",
"next-themes": "^0.2.0",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.53.0"
},
"devDependencies": {
"@types/node": "18.0.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"babel-eslint": "^10.1.0",
"eslint": "^8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{tsx},*.{ts},*.{mdx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}