-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 734 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 734 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
{
"name": "node_express_template",
"version": "1.0.0",
"description": "Express-based Node project template",
"main": "app.ts",
"scripts": {
"start-local": "DOTENV_CONFIG_PATH=.env.local tsx --watch --require dotenv/config app.ts",
"dev": "tsx watch app.ts",
"start": "node dist/app.js",
"build": "tsc"
},
"author": "hyeonjeong lee",
"license": "ISC",
"dependencies": {
"@firebase/firestore": "^4.7.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mariadb": "^3.4.0",
"mysql2": "^3.12.0",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"type": "module"
}