-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "Videoxen",
"description": "A Short Form Video Platform",
"repository": "https://github.com/shuvro111/videoxen.git",
"author": "Shuvro Sarkar",
"license": "MIT",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts && next lint",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"prepare": "husky install",
"commit": "git-cz"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "Please use yarn for managing dependencies"
},
"dependencies": {
"@sanity/client": "^3.4.1",
"axios": "^1.1.2",
"next": "12.2.5",
"next-auth": "^4.14.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"zustand": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "18.7.1",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"autoprefixer": "^10.4.8",
"commitizen": "^4.2.5",
"eslint": "8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}