-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "CasaDosAnjosBackend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/index.ts",
"build": "tsup src/index.ts --format esm --dts --minify --clean --sourcemap --target node16",
"start": "node dist/index.js",
"prod": "npm run build && pm2 start dist/index.js --name CasaDosAnjosBackend -p 3333"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chatgpt": "^5.2.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}