-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 913 Bytes
/
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
{
"name": "fake-triggers",
"type": "module",
"private": true,
"scripts": {
"db:prepare": "tsx --env-file=.env src/scripts/prepare-database.ts",
"exec": "tsx --env-file=.env",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"listen": "tsx --env-file=.env --watch src/scripts/listen-to-change-streams.ts",
"test": "vitest"
},
"dependencies": {
"cli-progress": "^3.12.0",
"lodash": "^4.17.21",
"mongodb": "^6.12.0",
"nanoid": "^5.0.9",
"pino": "^9.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@faker-js/faker": "^9.3.0",
"@types/cli-progress": "^3.11.6",
"@types/lodash": "^4.17.13",
"@types/nanoid": "^2.1.0",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}