-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 978 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
{
"name": "fsw-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config bin/www",
"dev": "nodemon -r dotenv/config bin/www",
"test": "jest test/* --watch --coverage "
},
"repository": {
"type": "git",
"url": "git+https://github.com/synrgy-tim-d/FSW-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/synrgy-tim-d/FSW-Backend/issues"
},
"homepage": "https://github.com/synrgy-tim-d/FSW-Backend#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.33.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"formidable": "^2.1.1",
"googleapis": "^110.0.0",
"jsonwebtoken": "^9.0.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"request": "^2.88.2",
"sequelize": "^6.28.0"
},
"devDependencies": {
"jest": "^29.4.0",
"supertest": "^6.3.3"
}
}