-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 950 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 950 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "dawini",
"version": "1.0.0",
"description": "Node.js rest API with Express, Sequelize & PostgreSQL for a doctor appointment app",
"main": "app/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node app/server.js"
},
"keywords": [
"nodejs",
"express",
"sequelize",
"postgresql",
"rest",
"api",
"doctor"
],
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.19.0",
"cloudinary": "^1.26.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"nodemon": "^2.0.9",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^2.0.9"
},
"engines": {
"node": "12.x"
}
}