This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "quack-platform",
"version": "0.1.0",
"license": "Apache-2.0",
"private": false,
"description": "Guideline curation by maintainers for contributors",
"author": {
"name": "F-G Fernandez",
"url": "https://github.com/frgfm"
},
"keywords": [
"ai",
"assistant",
"contribution",
"quackai",
"deep learning",
"maintainer"
],
"repository": {
"type": "git",
"url": "https://github.com/quack-ai/platform"
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-toast": "^1.1.4",
"@vercel/analytics": "^1.1.1",
"autoprefixer": "10.4.14",
"axios": "^1.6.0",
"class-variance-authority": "^0.6.1",
"cmdk": "^0.2.0",
"js-cookie": "^3.0.5",
"next": "^13.5.0",
"postcss": "^8.4.31",
"posthog-js": "^1.75.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"sharp": "^0.32.6",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/js-cookie": "^3.0.4",
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.47.0",
"eslint-config-next": "^13.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.1"
}
}