-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "worker",
"version": "1.0.0",
"description": "Steps to run this project:",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"build": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arsen302/worker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arsen302/worker/issues"
},
"homepage": "https://github.com/Arsen302/worker#readme",
"dependencies": {
"amqplib": "^0.6.0",
"dotenv": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.10",
"sharp": "^0.27.1",
"typeorm": "0.2.31",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"@types/pg": "^7.14.9",
"@types/sharp": "^0.27.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
}
}