-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "cineflix",
"description": "",
"author": "LeoMSSilva",
"license": "MIT",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"clean": "rm -rf node_modules pnpm-lock.yaml && pnpm install",
"format": "prettier -w .",
"lint": "eslint . --fix",
"commit": "cz",
"configure-husky": "husky install && husky add .husky/pre-commit 'pnpm run lint-staged' && husky add .husky/prepare-commit-msg 'exec < /dev/tty && pnpm run cz --hook || true' && husky add .husky/commit-msg 'pnpm run commitlint -e $1' && husky add .husky/pre-push 'pnpm run build\nfirebase deploy'",
"lint-staged": "lint-staged"
},
"dependencies": {
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.16",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5",
"vite": "^4.5.5"
}
}