-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (55 loc) · 1.55 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
{
"name": "modt-backend",
"version": "1.0.0",
"description": "Base Structure to creata Express Application",
"homepage": "https://github.com/motd-5/motd-backend",
"license": "ISC",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=development&& nodemon src/index.js",
"start": "set NODE_ENV=production&& node src/index.js",
"test": "set NODE_ENV=test&& jest",
"test:clear": "jest --clearCache",
"prepare": "husky install"
},
"author": {
"name": "Boiler-Express",
"git": "https://github.com/Boiler-Express/Base-Express"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Boiler-Express/Base-Express.git"
},
"bugs": {
"url": "https://github.com/Boiler-Express/Base-Express/issues"
},
"dependencies": {
"aws-sdk": "^2.1195.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.21.3"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@types/jest": "^28.1.6",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}