-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.44 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
{
"name": "github-copilot-hackathon-project",
"version": "1.0.0",
"description": "The GitHub Copilot hackathon is a project created by CHAOSS Africa to demonstrate how GitHub CoPilot enhances and improves productivity.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"stylelint": "npx stylelint \"**/*.css\" --fix --allow-empty-input",
"format": "npm run prettier:fix && npm run lint:fix && npm run stylelint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chaoss/GitHub-Copilot-Hackathon-Project.git"
},
"keywords": [
"GitHub",
"Copilot"
],
"author": "CHAOSS",
"license": "ISC",
"bugs": {
"url": "https://github.com/chaoss/GitHub-Copilot-Hackathon-Project/issues"
},
"homepage": "https://github.com/chaoss/GitHub-Copilot-Hackathon-Project#readme",
"dependencies": {
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-scroll-area": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tabs": "1.1.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"lucide-react": "0.436.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6.26.1",
"tailwind-merge": "2.5.2",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"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-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "8.4.27",
"stylelint": "^15.4.0",
"stylelint-config-standard": "33.0.0",
"stylelint-scss": "4.6.0",
"tailwindcss": "3.3.3",
"typescript": "5.5.4",
"vite": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html,css,scss}": [
"npm run format -v",
"git add -v"
]
}
}