forked from GDSC-CAU/Thanks-Clip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
{
"name": "gdsc-project-final",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:video": "remotion preview video/index.jsx",
"build:video": "remotion render video/index.jsx",
"aws:deploy": "node scripts/deploy.js",
"aws:destroy": "node scripts/destroy.js",
"aws:increase": "node scripts/increase.js",
"eslint": "eslint '**/*.js`'",
"prettier": "prettier '**/*.{js,json,md}' --check",
"prettier:fix": "prettier **/*.{js,json,md}' --write",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@builder.io/partytown": "^0.7.5",
"@heroicons/react": "^2.0.13",
"@next/font": "^13.1.2",
"@remotion/bundler": "3.3.27",
"@remotion/cli": "3.3.27",
"@remotion/lambda": "3.3.27",
"@remotion/player": "3.3.27",
"@vercel/og": "^0.0.27",
"cookies-next": "^2.1.1",
"jotai": "^1.13.1",
"next": "^13.1.2",
"postcss-100vh-fix": "^1.0.2",
"react": "^18.2.0",
"react-canvas-confetti": "^1.3.0",
"react-dom": "^18.2.0",
"remotion": "3.3.27"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.13",
"aws-crt": "^1.15.7",
"chalk": "^5.2.0",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.2",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"lodash.chunk": "^4.2.0",
"postcss": "^8.4.21",
"postcss-loader": "7.0.2",
"postcss-preset-env": "7.8.3",
"prettier": "^2.8.3",
"sharp": "^0.31.3",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"webpack": "^5.75.0"
}
}