-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "madina",
"version": "1.0.0",
"description": "An api for getting moroccan cities and their districts in json/xml/csv format",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"format": "prettier --write \"./**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ysn4Irix/madina.git"
},
"keywords": [
"api",
"express",
"rest",
"nodejs"
],
"author": "Ysn4Irix",
"license": "MIT",
"bugs": {
"url": "git+https://github.com/Ysn4Irix/madina/issues"
},
"homepage": "https://github.com/Ysn4Irix/madina#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"fast-xml-parser": "3.3.3",
"he": "^1.2.0",
"helmet": "^6.0.0",
"json-2-csv": "3.7.7",
"morgan": "^1.10.0",
"mysql2": "^3.2.0",
"response-time": "^2.3.2",
"signale": "^1.4.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.13",
"cross-env": "^7.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}