-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "comp-nuvem",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:EllianCarlos/comp-nuvem.git",
"license": "MIT",
"scripts": {
"pub:auth": "ts-node src/auth/producer.ts",
"sub:auth": "ts-node src/auth/consumer.ts",
"pub:data": "ts-node src/data/producer.ts",
"sub:data": "ts-node src/data/consumer.ts",
"build": "tsc --project tsconfig.json"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"kafkajs": "^2.2.4",
"mongoose": "^7.2.1",
"synchronized-promise": "^0.3.1 "
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": "~16.x"
}
}