-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
41
42
43
44
45
{
"name": "back-end-template",
"version": "1.0.0",
"description": "back-end-template using node and mongodb docker",
"main": "index.js",
"repository": "git@github.com:vd89/back-end-template.git",
"author": "vd89",
"license": "yes",
"private": true,
"type": "module",
"engines": {
"node": "^19.3.0",
"npm": "^9.2.0",
"yarn": "^1.22.19"
},
"dependencies": {
"compression": "^1.7.4",
"config": "^3.3.8",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"i18n": "^0.15.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.6.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1"
},
"scripts": {
"dev": "cross-env DEBUG=app:* node --watch index.js",
"start": "NODE_ENV=production DEBUG=app:* node .",
"remove": "rm -rf dist node_modules",
"db:init": "docker compose -f int-setup/docker-compose.yaml up -d"
}
}