-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.32 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.32 KB
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
{
"name": "videonote",
"version": "0.1.0",
"keywords": [
"josh mu",
"nextjs",
"react",
"todo",
"video",
"videonote"
],
"license": "MIT",
"author": {
"name": "josh mu",
"email": "hello@videonote.app",
"url": "https://joshmu.dev"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "next build && next start",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"plop": "plop",
"prepare": "husky"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"date-fns": "^4.1.0",
"file-saver": "^2.0.5",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.18.1",
"mongoose": "^9.5.0",
"motion": "^12.38.0",
"nanoid": "^5.1.11",
"next": "^16.2.7",
"next-absolute-url": "^1.2.2",
"nodemailer": "^8.0.6",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-player": "^3.4.0",
"react-scroll": "^1.9.3",
"universal-cookie": "^8.1.0",
"validator": "^13.15.35"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^20.5.3",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^3.0.0",
"@types/file-saver": "^2.0.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.24",
"@types/node": "^25.9.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-scroll": "^1.8.10",
"@types/validator": "^13.15.10",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.27",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.22.1",
"oxfmt": "^0.48.0",
"oxlint": "^1.62.0",
"plop": "^4.0.5",
"postcss": "^8.5.14",
"postcss-preset-env": "^11.2.0",
"sass": "^1.99.0",
"tailwindcss": "^4.3.0",
"tailwindcss-debug-screens": "^3.0.1",
"typescript": "^6.0.2",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@10.33.0"
}