-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1013 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
{
"name": "nodejs-mysql-customers-api",
"version": "1.0.0",
"description": "Node.js REST-ful CRUD API Node.js Express mysql",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"startServer": "nodemon --watch server.js 8383"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeorgeCrisan/nodejs-mysql-customers-api.git"
},
"keywords": [
"nodejs",
"express",
"mysql",
"restapi",
"customers"
],
"author": "George Crisan @ www.georgecrisan.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/GeorgeCrisan/nodejs-mysql-customers-api/issues"
},
"homepage": "https://github.com/GeorgeCrisan/nodejs-mysql-customers-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"knex": "^0.21.1",
"mysql": "^2.18.1",
"objection": "^2.2.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}