-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "backend",
"version": "1.0.0",
"description": "Backend API for the project, using Node.js, Express, and MySQL.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"format": "prettier 'src/**/*.{js,ts,jsx,tsx,json}' server.js package.json --write",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watchAll",
"test:with-server": "concurrently --kill-others --success first \"pnpm dev\" \"pnpm test\""
},
"license": "MIT",
"type": "module",
"author": "Khelde muke78 muke7881@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/muke78/Backend_RESTFULL.git"
},
"keywords": [
"node",
"express",
"api",
"backend",
"mysql",
"swagger"
],
"engines": {
"node": ">=v22.11.0"
},
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"argon2": "^0.41.1",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"google-auth-library": "^9.15.1",
"helmet": "^8.1.0",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.11.3",
"standard": "^17.1.2",
"swagger-jsdoc": "^6.2.8",
"swagger-themes": "^1.4.3",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@faker-js/faker": "^9.7.0",
"concurrently": "^9.2.0",
"dotenv": "^16.5.0",
"eslint": "^9.26.0",
"frisby": "^2.1.3",
"globals": "^16.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3"
}
}