-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.75 KB
/
package.json
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
{
"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": "^3.1.3",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/swagger": "^8.1.0",
"@nestjs/terminus": "^10.2.3",
"@types/body-parser": "^1.19.5",
"@types/ini": "^4.1.1",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"cheerio": "^1.0.0",
"deepl": "^1.0.13",
"dom-parser": "^1.1.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"http": "^0.0.1-security",
"iconv-lite": "^0.6.3",
"ini": "^5.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.1",
"lodash": "^4.17.21",
"nestjs-pino": "^4.2.0",
"pino": "^9.6.0",
"pino-http": "^10.3.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.4.9",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.15",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.13",
"@types/pump": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"concurrently": "^9.1.0",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}