forked from andrea-lorenzetti/book-and-drive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 863 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
{
"name": "book-and-drive",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --setupFiles dotenv/config -i",
"start": "node index.js",
"start_local": "echo use : $ npm run dev",
"dev": "node -r dotenv/config index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrea-lorenzetti/book-and-drive.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrea-lorenzetti/book-and-drive/issues"
},
"homepage": "https://github.com/andrea-lorenzetti/book-and-drive#readme",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3"
},
"devDependencies": {
"jest": "^28.1.0",
"supertest": "^6.2.3"
}
}