-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hypnos-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypnos-io/hypnos-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hypnos-io/hypnos-api/issues"
},
"homepage": "https://github.com/hypnos-io/hypnos-api#readme",
"dependencies": {
"bullmq": "^3.10.2",
"cloudinary": "^1.36.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"ioredis": "^5.3.1",
"mongodb": "5.1",
"mongoose": "^7.0.1",
"socket.io": "^4.6.1",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"socket.io-client": "^4.6.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}