-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "taritme-backend",
"version": "1.0.0",
"description": "Backend side for Taritme",
"main": "app.js",
"type": "module",
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"dev": "nodemon app.js",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "nodemon dist/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Launa-Reswara/taritme-backend"
},
"author": "Launa Reswara",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^2.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"jsonwebtoken": "^9.0.2",
"midtrans-client": "^1.3.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.9.7",
"nanoid": "^5.0.7",
"nodemailer": "^6.9.14",
"winston": "^3.13.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}