-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 941 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": "module-13-challenge-orm",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start:dev": "nodemon server.js",
"watch": "nodemon server.js",
"seed": "node seeds/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:coding-boot-camp/module-13-challenge-orm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.3",
"sequelize-cli": "^6.6.1"
},
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.1.0",
"pg": "^8.11.1",
"sequelize": "^6.32.1",
"swagger-ui-express": "^5.0.0"
}
}