forked from Khanhtran47/Sora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"private": true,
"name": "remix-movie",
"version": "0.0.1",
"description": "",
"license": "",
"scripts": {
"css:watch": "yarn run css:build -- --watch",
"css:build": "postcss styles/**/*.css --dir app/styles",
"css:prod": "yarn run css:build -- --env production",
"build": "yarn run css:prod && remix build",
"prebuild": "rimraf ./public/build \"./app/styles/**/*.css\"",
"dev": "concurrently \"yarn css:watch\" \"remix dev\"",
"postinstall": "remix setup node",
"start": "remix-serve build",
"prepare": "husky install"
},
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.4.7",
"@metronome-sh/react": "^5.6.1",
"@metronome-sh/vercel": "^5.6.1",
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@nextui-org/react": "^1.0.0-beta.10",
"@radix-ui/react-aspect-ratio": "^1.0.0",
"@radix-ui/react-navigation-menu": "^1.0.0",
"@radix-ui/react-scroll-area": "^1.0.0",
"@radix-ui/react-select": "^1.0.0",
"@radix-ui/react-slider": "^1.0.0",
"@radix-ui/react-toast": "^1.0.0",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"@remix-run/vercel": "^1.6.5",
"@supabase/supabase-js": "^2.0.4",
"@tailwindcss/line-clamp": "^0.4.2",
"artplayer": "^4.5.8",
"autoprefixer": "^10.4.12",
"color-thief-react": "^2.1.0",
"concurrently": "^7.2.1",
"eslint-import-resolver-typescript": "^2.7.1",
"framer-motion": "^6.5.1",
"hls.js": "^1.2.4",
"i18next": "^21.9.0",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-fs-backend": "^1.1.5",
"i18next-http-backend": "^1.4.1",
"lottie-web": "^5.9.6",
"lru-cache": "^7.14.0",
"next-themes": "^0.2.0",
"nprogress": "^0.2.0",
"photoswipe": "^5.3.2",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-preset-env": "^7.8.2",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-device-detect": "^2.2.2",
"react-dom": "17.0.2",
"react-i18next": "^11.18.4",
"react-intersection-observer": "^9.4.0",
"react-photoswipe-gallery": "^2.2.1",
"react-youtube": "^9.0.3",
"remix": "1.6.5",
"remix-i18next": "^4.1.1",
"remix-image": "^1.3.3",
"remix-image-sharp": "^0.1.3",
"remix-utils": "^3.3.0",
"sharp": "^0.31.0",
"swiper": "^8.4.2",
"tailwindcss": "^3.2.1",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@types/i18next-fs-backend": "^1.1.2",
"@types/nprogress": "^0.2.0",
"@types/postcss-preset-env": "^7.7.0",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-eslint": "^10.1.0",
"cssnano": "^5.1.13",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^7.0.0",
"lint-staged": "^13.0.1",
"postcss-import": "^15.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{tsx,ts,jsx,js}": "yarn eslint",
"*": "yarn prettier -c"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}