-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.14 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
{
"name": "ts-server",
"version": "1.0.0",
"description": "My personal website's server, wriiten in TypeScript",
"main": "dist/index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lvoz2/ts-server.git"
},
"author": "lv_oz2",
"license": "MIT",
"bugs": {
"url": "https://github.com/lvoz2/ts-server/issues"
},
"homepage": "https://github.com/lvoz2/ts-server#readme",
"dependencies": {
"@simplewebauthn/browser": "^13.0.0",
"@simplewebauthn/server": "^13.0.0",
"@types/cloudflare-turnstile": "^0.2.2",
"argon2": "^0.41.1",
"buffer": "^6.0.3",
"dotenv": "^16.4.5",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"jose": "^5.9.6",
"nanoid": "^5.0.8",
"next": "^15.1.6",
"peer": "^1.0.2",
"peerjs": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ssh2": "^1.16.0",
"url-matcher": "^0.2.2",
"uuid": "^11.0.2",
"validator": "^13.12.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.20.0",
"@types/connect-sqlite3": "^0.9.5",
"@types/cookie-parser": "^1.4.7",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/react": "18.3.12",
"@types/ssh2": "^1.15.1",
"@types/toobusy-js": "^0.5.4",
"@types/validator": "^13.12.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.24.0",
"uglify-js": "^3.19.3"
},
"type": "module",
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}