-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 727 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 727 Bytes
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
{
"name": "express-rest-api",
"version": "1.0.0",
"description": "Template for express Restful API",
"author": "Puripat Arayasirikul <boat46450@hotmail.com>",
"main": "index.js",
"license": "ISC",
"scripts": {
"start": "nodemon index.js",
"rollback": "knex --knexfile database/knexfile.js migrate:rollback",
"migrate": "knex --knexfile database/knexfile.js migrate:latest",
"seed": "knex --knexfile database/knexfile.js seed:run"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"knex": "^0.14.6",
"mysql": "^2.15.0"
}
}