-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "tweetthread",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"dev:docker": "./scripts/dev.sh",
"dev": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules src/main/index.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"build": "tsup src --out-dir build",
"start": "node build/main/index.js"
},
"author": "Murilo Maia",
"license": "MIT",
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.1.3",
"@types/supertest": "^2.0.12",
"@vitest/coverage-c8": "^0.31.0",
"eslint": "^8.40.0",
"eslint-plugin-vitest-globals": "^1.3.1",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.5.0",
"openai": "^3.2.1",
"zod": "^3.21.4"
}
}