-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.53 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.2.0",
"@internationalized/date": "^3.6.0",
"framer-motion": "^11.13.1",
"lodash": "^4.17.21",
"next": "^14.2.19",
"next-auth": "^4.24.10",
"next-runtime-env": "^3.2.2",
"qs": "^6.13.1",
"react": "^18.3.1",
"react-aria-components": "^1.5.0",
"react-dom": "^18.3.1",
"react-sortablejs": "^6.1.4",
"sharp": "^0.33.5",
"sortablejs": "^1.15.6",
"stories-react": "^1.1.2",
"uuid": "^11.0.3",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/exec": "^6.0.3",
"@serwist/next": "^9.0.10",
"@stylistic/eslint-plugin-js": "^2.11.0",
"@tailwindcss/forms": "^0.5.9",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/qs": "^6.9.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sortablejs": "^1.15.8",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-customizable": "7.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.19",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"semantic-release": "^24.2.0",
"serwist": "^9.0.10",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.16",
"typescript": "5.7.2"
}
}