-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.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
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
{
"name": "veganify-api",
"version": "0.5.1",
"description": "Veganify API",
"main": "dist/app.js",
"packageManager": "bun",
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "bun dist/main.js",
"build": "nest build",
"lint": "bunx biome check .",
"lint:fix": "bunx biome check --write .",
"check:code": "bunx ultracite check",
"get:peta": "node .github/scripts/peta-cron.js",
"test": "bun test --concurrent --timeout=10000 --reporter=dots",
"test:cov": "bun test --coverage",
"process:ingredients": "bun scripts/processIngredients.js",
"process:vegan": "bun run process:ingredients ../isvegan.json",
"process:notvegan": "bun run process:ingredients ../isnotvegan.json",
"process:maybenotvegan": "bun run process:ingredients ../ismaybenotvegan.json",
"process:all": "concurrently --names \"vegan,not vegan,maybe vegan\" --prefix-colors \"green,red,yellow\" \"bun run process:vegan\" \"bun run process:notvegan\" \"bun run process:maybenotvegan\"",
"check": "concurrently --names \"lint,typecheck,test\" --prefix-colors \"yellow,blue,green\" \"bun run lint\" \"tsc --noEmit -p tsconfig.build.json\" \"bun test --concurrent --timeout=10000 --reporter=dots --bail\"",
"prepare": "husky"
},
"author": "JokeNetwork, Veganify Contributors",
"license": "MIT",
"overrides": {
"handlebars": "^4.7.9",
"lodash": "^4.18.1",
"axios": ">=0.31.0",
"undici": "^7.24.0",
"minimatch": "^3.1.4",
"flatted": "^3.4.2",
"picomatch": "^4.0.4"
},
"dependencies": {
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^11.1.24",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.24",
"@nestjs/platform-express": "^11.1.24",
"@nestjs/swagger": "^11.4.4",
"@nestjs/terminus": "^11.1.1",
"@types/body-parser": "^1.19.6",
"@types/ini": "^4.1.1",
"body-parser": "^2.2.2",
"cache-manager-redis-store": "^3.0.1",
"cheerio": "^1.2.0",
"deepl": "^1.0.13",
"dom-parser": "^1.1.5",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"http": "^0.0.1-security",
"iconv-lite": "^0.7.2",
"ini": "^7.0.0",
"js-yaml": "^4.2.0",
"jsdom": "^29.1.1",
"lodash": "^4.18.1",
"nestjs-pino": "^4.6.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"rate-limiter-flexible": "^11.1.1",
"redis": "^6.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@nestjs/cli": "^11.0.18",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.24",
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^28.0.3",
"@types/lodash": "^4.17.24",
"@types/pump": "^1.1.3",
"axios": "^1.17.0",
"concurrently": "^10.0.3",
"husky": "^9.0.0",
"lint-staged": "^17.0.7",
"qs": "^6.15.2",
"typescript": "^6.0.3",
"ultracite": "^7.8.1"
},
"lint-staged": {
"*.{js,ts,json}": [
"bunx biome check --write --no-errors-on-unmatched"
]
}
}