-
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) · 862 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 862 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": "node-js-fullstack-framework",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"imports": {
"#core/*": "./core/*",
"#app/*": "./app/*",
"#config/*": "./config/*",
"#cli/*": "./cli/"
},
"scripts": {
"build": "npm install",
"debug": "nodemon --inspect index.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"express-session": "^1.18.0",
"get-intrinsic": "^1.3.0",
"helmet": "^7.1.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemon": "^3.1.0",
"xss": "^1.0.15",
"yarn": "^1.22.22"
}
}