-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 932 Bytes
/
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
{
"name": "express-api",
"version": "3.1.0",
"description": "basic setup for node api, using express js",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "nodemon server.js",
"start": "node server.js"
},
"license": "ISC",
"dependencies": {
"@joi/date": "^2.1.0",
"@types/mysql": "^2.15.19",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"joi": "^17.4.2",
"knex": "^0.95.14",
"mysql": "^2.18.1",
"sqlite3": "^5.0.2",
"swagger-ui-express": "^4.1.6",
"yamljs": "^0.3.0"
},
"keywords": [
"api",
"expressjs",
"nodejs",
"backend",
"server",
"node server"
],
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"supertest": "^6.1.6"
}
}