-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.59 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.59 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
90
91
{
"name": "sectoolbox",
"version": "1.0.0",
"private": true,
"description": "Privacy-first security analysis tools running entirely in your browser",
"homepage": "./",
"dependencies": {
"crypto-js": "^4.2.0",
"exif-js": "^2.3.0",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.26.1",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run optimize-build",
"build:client": "REACT_APP_CLIENT_ONLY=true react-scripts build && npm run optimize-build",
"build:pwa": "REACT_APP_PWA=true npm run build:client",
"optimize-build": "npm run copy-sw && npm run generate-sitemap",
"copy-sw": "cp public/sw.js build/sw.js && cp public/manifest.json build/manifest.json",
"generate-sitemap": "node scripts/generate-sitemap.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "npx serve -s build -l 3000",
"analyze": "npx source-map-explorer 'build/static/js/*.js'",
"lighthouse": "npx lighthouse http://localhost:3000 --output html --output-path ./lighthouse-report.html",
"deploy:vercel": "npm run build:pwa && npx vercel --prod",
"deploy:github": "npm run build:pwa && npx gh-pages -d build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/js": "9.23.0",
"autoprefixer": "^10.4.20",
"eslint": "9.23.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"gh-pages": "^6.1.1",
"globals": "15.15.0",
"lighthouse": "^11.7.1",
"postcss": "^8.4.49",
"serve": "^14.2.0",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.4.17",
"vercel": "^37.4.2"
},
"keywords": [
"security",
"ctf",
"analysis",
"privacy",
"client-side",
"offline",
"pwa",
"cryptography",
"forensics",
"web-crypto",
"no-server"
],
"author": {
"name": "Sectoolbox Team",
"url": "https://github.com/sectoolbox"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sectoolbox/sectoolbox.git"
},
"bugs": {
"url": "https://github.com/sectoolbox/sectoolbox/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}