-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "sns-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"attack": "tsx tools/dictionary-attack.ts --target admin",
"brute": "tsx tools/brute-force.ts",
"brute:lownm": "tsx tools/brute-force.ts --charset lownm --target alice",
"brute:alnum": "tsx tools/brute-force.ts --charset alnum --target bob",
"fast-api": "tsx server/fast-api.ts",
"attack:fast": "tsx tools/dictionary-attack.ts --url http://localhost:3001",
"brute:fast": "tsx tools/brute-force.ts --url http://localhost:3001"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"jose": "^6.1.3",
"next": "^16.2.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"undici": "^7.22.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tsx": "^4.21.0",
"typescript": "^5"
}
}