forked from cefiti/cefiti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.38 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
{
"name": "cefiti",
"version": "0.0.0",
"description": "Catálogo de Exigências Fitossanitárias para o Trânsito Interestadual",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/dalci/cefiti.git"
},
"bugs": {
"url": "https://github.com/dalci/cefiti/issues"
},
"keywords": [],
"authors": [
"Dalci de Jesus Bagolin",
"Omar Roberto da Silveira"
],
"license": "MIT",
"homepage": ".",
"imports": {
"#db": {
"node": "./cefiti/src/db.ts",
"default": "./cefiti/public/db.js"
},
"#db-next": "./cefiti-new/public/db-next.js",
"#legislacao": "./cefiti-new/public/legislacao.js",
"#municipios": "./cefiti-new/public/municipios.js"
},
"scripts": {
"start": "node dev.mjs cefiti",
"start:new": "node dev.mjs cefiti-new",
"start:admin": "node dev.mjs cefiti-admin",
"test": "node --test --experimental-strip-types \"cefiti/test/**/*.test.ts\"",
"test:new": "node --test --experimental-strip-types \"cefiti-new/test/**/*.test.ts\"",
"analyze": "source-map-explorer cefiti/public/*.js",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check --write .",
"build": "node dev.mjs cefiti --build",
"build:new": "node dev.mjs cefiti-new --build",
"build:admin": "node dev.mjs cefiti-admin --build",
"build-db": "esbuild cefiti/src/db.ts --bundle --outfile=cefiti/public/db.js --format=esm --target=es2017",
"deploy": "cd firebase && npx firebase-tools deploy --only hosting --project cefiti",
"publish:prod": "node --experimental-strip-types firebase/scripts/publicar-db-legacy.ts && cd firebase && npx firebase-tools deploy --only hosting --project cefiti",
"publish:dev": "node --experimental-strip-types firebase/scripts/publicar-db.ts && cd firebase && npx firebase-tools deploy --only hosting --project cefiti",
"publish:next": "node --experimental-strip-types firebase/scripts/publicar-db-next.ts && cd firebase && npx firebase-tools deploy --only hosting --project cefiti",
"meta": "esbuild cefiti/src/index.tsx --bundle --metafile=meta.json --outfile=out.js"
},
"dependencies": {
"@preact/signals": "^2.8.1",
"marked": "^18.0.0",
"preact": "^10.28.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"esbuild": "^0.27.3",
"typescript": "^6.0.0"
}
}