-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 5.7 KB
/
package.json
File metadata and controls
156 lines (156 loc) · 5.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "@striae-org/striae",
"version": "4.0.1",
"private": false,
"description": "Striae is a specialized, cloud-native platform designed to streamline forensic firearms identification by providing an intuitive environment for digital comparison image annotation, authenticated confirmations, and automated report generation.",
"license": "Apache-2.0",
"homepage": "https://github.com/striae-org/striae/wiki",
"repository": {
"type": "git",
"url": "https://github.com/striae-org/striae.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/striae-org"
},
"bugs": {
"url": "https://github.com/striae-org/striae/issues"
},
"keywords": [
"forensics",
"firearms",
"annotation",
"react",
"cloudflare-workers",
"authenticated",
"confirmations",
"chain-of-custody",
"audit-trail"
],
"publishConfig": {
"access": "public"
},
"files": [
"app/components/",
"app/config-example/",
"app/contexts/",
"app/hooks/",
"app/routes/",
"app/services/",
"app/styles/",
"app/types/",
"app/utils/",
"app/entry.client.tsx",
"app/entry.server.tsx",
"app/root.tsx",
"app/tailwind.css",
"react-router.config.ts",
"functions/",
"public/",
"scripts/",
"workers/*/package.json",
"workers/*/src/*.example.ts",
"workers/*/src/*.example.js",
"workers/*/src/*.ts",
"workers/pdf-worker/scripts/*.js",
"workers/pdf-worker/src/assets/icon-256.png",
"!workers/*/src/*worker.ts",
"workers/pdf-worker/src/assets/generated-assets.ts",
"workers/pdf-worker/src/formats/format-striae.ts",
"workers/pdf-worker/src/report-types.ts",
"workers/*/wrangler.jsonc.example",
".env.example",
"firebase.json",
"postcss.config.js",
"tailwind.config.ts",
"tsconfig.json",
"vite.config.ts",
"worker-configuration.d.ts",
"wrangler.toml.example",
"LICENSE",
"NOTICE"
],
"sideEffects": false,
"type": "module",
"scripts": {
"deploy:all": "bash ./scripts/deploy-all.sh",
"emulators": "firebase emulators:start --only auth",
"dev": "node ./scripts/dev.cjs && react-router dev",
"build": "node ./scripts/dev.cjs && react-router build",
"clean": "rm -rf build node_modules/.cache .cache",
"clean:build": "npm run clean && npm run build",
"deploy": "npm run build && wrangler pages deploy",
"publish:npm": "npm publish --access public --registry=https://registry.npmjs.org --@striae-org:registry=https://registry.npmjs.org",
"publish:npm:dry-run": "npm publish --dry-run --access public --registry=https://registry.npmjs.org --@striae-org:registry=https://registry.npmjs.org",
"publish:github": "npm publish --registry=https://npm.pkg.github.com --@striae-org:registry=https://npm.pkg.github.com",
"publish:github:dry-run": "npm publish --dry-run --registry=https://npm.pkg.github.com --@striae-org:registry=https://npm.pkg.github.com",
"publish:all": "npm run publish:npm && npm run publish:github",
"publish:all:dry-run": "npm run publish:npm:dry-run && npm run publish:github:dry-run",
"lint": "node ./scripts/run-eslint.cjs",
"start": "node ./scripts/dev.cjs && wrangler pages dev",
"typecheck": "react-router typegen && tsc",
"typegen": "wrangler types",
"preview": "npm run build && wrangler pages dev",
"cf-typegen": "wrangler types",
"update-versions": "node ./scripts/update-markdown-versions.cjs",
"update-compatibility-dates": "node ./scripts/update-compatibility-dates.cjs",
"deploy-config": "bash ./scripts/deploy-config.sh",
"update-env": "bash ./scripts/deploy-config.sh --update-env",
"install-workers": "bash ./scripts/install-workers.sh",
"deploy-workers": "npm run deploy-workers:audit && npm run deploy-workers:data && npm run deploy-workers:image && npm run deploy-workers:keys && npm run deploy-workers:pdf && npm run deploy-workers:user",
"deploy-workers:secrets": "bash ./scripts/deploy-worker-secrets.sh",
"deploy-pages:secrets": "bash ./scripts/deploy-pages-secrets.sh",
"deploy-pages": "bash ./scripts/deploy-pages.sh",
"deploy-workers:audit": "cd workers/audit-worker && npm run deploy",
"deploy-workers:data": "cd workers/data-worker && npm run deploy",
"deploy-workers:image": "cd workers/image-worker && npm run deploy",
"deploy-workers:keys": "cd workers/keys-worker && npm run deploy",
"deploy-workers:pdf": "cd workers/pdf-worker && npm run deploy",
"deploy-workers:user": "cd workers/user-worker && npm run deploy"
},
"dependencies": {
"@react-router/cloudflare": "^7.13.1",
"exceljs": "^4.4.0",
"firebase": "^12.10.0",
"isbot": "^5.1.35",
"jszip": "^3.10.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1"
},
"devDependencies": {
"@react-router/dev": "^7.13.1",
"@react-router/fs-routes": "^7.13.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.56.1",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-tsconfig-paths": "^6.1.1",
"wrangler": "^4.73.0"
},
"overrides": {
"tar": "7.5.11",
"undici": "7.24.1",
"exceljs": {
"archiver": "7.0.1",
"fast-csv": "5.0.5",
"unzipper": "0.12.3",
"glob": "13.0.6"
}
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@11.11.0"
}