-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "be-train-member-management",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./src/app",
"dev": "nodemon ./src/app",
"init_db": "node src/database/init-db.js",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js"
},
"keywords": [
"node",
"s-group",
"training"
],
"engines": {
"node": ">=v16.0.0",
"npm": ">=8.11.0"
},
"dependencies": {
"body-parser": "^1.20.1",
"cache-manager": "^5.2.3",
"dotenv": "^16.0.3",
"expire-cache": "^1.0.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"mysql": "^2.18.1",
"nested-knex": "^0.1.2",
"nodemailer": "^6.9.1",
"pg": "^8.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.0.5"
}
}