-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "backend",
"version": "1.0.0",
"description": "Backend",
"main": "dist/app.js",
"scripts": {
"build": "npm run clean && npm run build-babel && npm run copy",
"build-babel": "babel -d ./dist ./src -s",
"clean": "rm -rf dist && mkdir dist",
"copy": "babel src --out-dir ./dist --copy-files",
"dev": "nodemon --exec babel-node src/app.js",
"format": "prettier --write --cache \"**/*.{js,md}\"",
"lint": "eslint src --ext js,md --ignore-path .gitignore --fix --cache --report-unused-disable-directives",
"prepare": "lefthook install",
"start": "node dist/app.js",
"test": "echo test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sliit-foss/functions": "2.2.3",
"@sliit-foss/http-logger": "1.1.2",
"@sliit-foss/module-logger": "1.1.5",
"bcryptjs": "2.4.3",
"celebrate": "15.0.1",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.18.2",
"express-http-context": "1.2.4",
"express-rate-limit": "6.8.1",
"handlebars": "4.7.8",
"helmet": "7.0.0",
"http-errors": "2.0.0",
"jsonwebtoken": "9.0.1",
"lodash": "4.17.21",
"mongoose": "7.4.2",
"mongoose-aggregate-paginate-v2": "1.0.6",
"mongoose-paginate-v2": "1.7.31",
"nodemailer": "6.9.4",
"openai": "4.12.1",
"readline": "1.3.0"
},
"devDependencies": {
"@babel/cli": "7.22.9",
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/node": "7.22.6",
"@babel/preset-env": "7.22.9",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@sliit-foss/eslint-config-internal": "1.1.4",
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"babel-plugin-module-resolver": "5.0.0",
"dotenv": "16.3.1",
"eslint": "8.46.0",
"eslint-plugin-import": "2.28.0",
"lefthook": "1.4.8",
"nodemon": "3.0.1",
"prettier": "3.0.0"
}
}