This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "zero-minds",
"version": "0.1.0",
"private": false,
"homepage": "https://zerominds.netlify.app/",
"description": "ZeroMinds is a platform for aspiring creators (designers, developers, testers, content writers, ..) to collaborate and create websites and application together to pimp their portfolio to land their first job in tech. Zero barriers - everyone is welcome to join and contribute.",
"repository": {
"type": "git",
"url": "https://github.com/YuriDevAT/zero-minds"
},
"keywords": [
"javascript",
"zerominds",
"socials",
"yuriscodingclub",
"reactjs",
"react",
"nextjs",
"tailwindcss",
"typescript",
"portfolio",
"collaboration"
],
"author": "Julia Undeutsch",
"license": "MIT",
"bugs": {
"url": "https://github.com/YuriDevAT/zero-minds/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"next": "13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.4"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}