-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "simple-api-starter",
"version": "1.0.0",
"description": " A basic starter for an express.js API",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint --fix src",
"test": "mocha --exit"
},
"keywords": [],
"author": "RSP <rizkysampratama@gmail.com> (https://rizkysam.web.id)",
"repository": {
"type": "git",
"url": "https://github.com/rizama/simple-api-starter"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.2",
"cheerio": "^1.0.0-rc.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.5",
"express-slow-down": "^1.4.0",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"modern-random-ua": "^1.0.3",
"moment": "^2.29.2",
"moment-range": "^4.0.2",
"moment-timezone": "^0.5.33",
"morgan": "^1.10.0",
"request": "^2.88.2",
"user-agents": "^1.0.559"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"supertest": "^4.0.2"
}
}