-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:app": "ts-node src/app.ts",
"start:sync": "ts-node src/sync.ts",
"start:full-sync": "ts-node src/sync.ts --full-reindex"
},
"author": "Cheprasov Aleksandr <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/lodash": "^4.14.195",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"eslint": "8.42.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"prettier": "2.8.8",
"typescript": "5.1.3"
},
"dependencies": {
"@faker-js/faker": "8.0.2",
"@types/amqplib": "^0.10.1",
"amqplib": "^0.10.3",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"mongoose": "^7.3.0",
"ts-node": "^10.9.1"
}
}