-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.52 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
82
{
"name": "plex-rewind",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "eslint --cache .",
"lint:types": "tsc --noEmit",
"lint:css": "stylelint --cache \"**/*.css\"",
"lint:all": "pnpm lint && pnpm lint:types && pnpm lint:css && pnpm format:check",
"lint:all:fix": "eslint --cache --fix . && pnpm lint:types && stylelint --cache --fix \"**/*.css\" && pnpm format",
"format": "prettier --write --cache .",
"format:check": "prettier --check --cache .",
"prepare": "husky",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@internationalized/date": "^3.5.5",
"framer-motion": "^11.5.6",
"lodash": "^4.17.21",
"next": "^14.2.13",
"next-auth": "^4.24.7",
"next-runtime-env": "^3.2.2",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-aria-components": "^1.3.3",
"react-dom": "^18.3.1",
"react-sortablejs": "^6.1.4",
"sharp": "^0.33.5",
"sortablejs": "^1.15.3",
"stories-react": "^1.1.2",
"uuid": "^10.0.0",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/exec": "^6.0.3",
"@serwist/next": "^9.0.8",
"@stylistic/eslint-plugin-js": "^2.8.0",
"@tailwindcss/forms": "^0.5.9",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@types/qs": "^6.9.16",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/sortablejs": "^1.15.8",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"commitizen": "^4.3.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-customizable": "7.2.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"semantic-release": "^24.1.1",
"serwist": "^9.0.8",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.12",
"typescript": "5.5.4"
}
}