-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1006 Bytes
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": "express-template-stable",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "cross-env NODE_ENV=productionn node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"dependencies": {
"@google/generative-ai": "^0.17.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1"
}
}