-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.95 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.95 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
{
"name": "veganify-api",
"version": "0.5.1",
"description": "Veganify API",
"main": "dist/app.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "bun dist/main.js",
"build": "nest build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"get:peta": "node .github/scripts/peta-cron.js",
"test": "jest",
"test:cov": "jest --coverage",
"process:ingredients": "bun scripts/processIngredients.js",
"process:vegan": "pnpm run process:ingredients ../isvegan.json",
"process:notvegan": "pnpm run process:ingredients ../isnotvegan.json",
"process:maybenotvegan": "pnpm run process:ingredients ../ismaybenotvegan.json",
"process:all": "concurrently --names \"vegan,not vegan,maybe vegan\" --prefix-colors \"green,red,yellow\" \"pnpm process:vegan\" \"pnpm process:notvegan\" \"pnpm process:maybenotvegan\"",
"check": "concurrently --names \"lint,typecheck,test\" --prefix-colors \"yellow,blue,green\" \"pnpm lint\" \"tsc --noEmit\" \"pnpm test\""
},
"author": "JokeNetwork, Veganify Contributors",
"license": "MIT",
"dependencies": {
"@nestjs/axios": "^4.0.1",
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^10.4.16",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/platform-express": "^11.1.19",
"@nestjs/swagger": "^8.1.1",
"@nestjs/terminus": "^11.1.1",
"@types/body-parser": "^1.19.6",
"@types/ini": "^4.1.1",
"axios": "^1.13.6",
"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.3.2",
"http": "^0.0.1-security",
"iconv-lite": "^0.7.2",
"ini": "^5.0.0",
"js-yaml": "^4.1.1",
"jsdom": "^27.4.0",
"lodash": "^4.18.1",
"nestjs-pino": "^4.6.0",
"pino": "^9.14.0",
"pino-http": "^10.5.0",
"rate-limiter-flexible": "^9.1.1",
"redis": "^5.12.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"pnpm": {
"overrides": {
"handlebars": "^4.7.9",
"lodash": "^4.18.1",
"deepl>axios": "^0.31.0",
"undici": "^7.24.0",
"minimatch": "^3.1.4",
"flatted": "^3.4.2",
"picomatch": "^4.0.4"
}
},
"devDependencies": {
"@nestjs/cli": "^11.0.18",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^10.4.15",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^27.0.0",
"@types/lodash": "^4.17.24",
"@types/pump": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.58.2",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}