generated from CodeCompanionBE/code-companion-node-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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": "code-companion-auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon -e ts,json,env --exec ts-node --files -r dotenv/config src/index.ts",
"start:bot": "nodemon -e ts,json,env --exec ts-node --files -r dotenv/config src/bot/chat-bot.ts",
"test": "LOG_LEVEL=error vitest run",
"test:watch": "LOG_LEVEL=error vitest watch",
"lint": "eslint ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/supertest": "^2.0.12",
"@types/ws": "^8.5.5",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vitest-globals": "^1.3.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.2.0",
"vitest": "^0.29.3"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"axios": "^1.4.0",
"fastify": "^4.14.1",
"fluent-json-schema": "^4.1.1",
"ws": "^8.13.0"
}
}