-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "batin",
"version": "1.0.0",
"description": "a server for batin application",
"main": "src/index.js",
"scripts": {
"build": "npx tsc --outDir build",
"start": "node build/index.js",
"dev": "nodemon src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.13.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"openai": "^4.43.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cron": "^2.4.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.0.3",
"prisma": "^5.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}