-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
50
51
52
53
54
55
56
57
{
"name": "node-server",
"version": "0.0.1",
"description": "Backend for OpenCollab made in node",
"main": "build/main.js",
"author": "Lucas Antunes",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon",
"test": "ts-mocha tests/**/*.test.ts"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cls-hooked": "^4.3.3",
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"clone-deep": "^4.0.1",
"cls-hooked": "^4.2.2",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mongodb": "^3.6.8",
"pino": "^6.11.3",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/clone-deep": "^4.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/mongodb": "^3.6.16",
"@types/node": "^15.3.0",
"@types/pino": "^6.3.8",
"@types/redis": "^2.8.28",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.2",
"lorem-ipsum": "^2.0.3",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"pino-pretty": "^4.8.0",
"supertest": "^6.1.3",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.4"
}
}