-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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": "capston",
"version": "1.0.0",
"description": "backend side for capston project",
"main": "./server.js",
"type": "module",
"scripts": {
"test": " node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll --coverage --verbose --silent --detectOpenHandles",
"start": "node ./server.js",
"dev": "nodemon ./server.js"
},
"author": "fabrice",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"bcrypt": "^5.0.1",
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.4",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"slug": "^5.3.0",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"nodemon": "^2.0.15"
}
}