forked from Akshay090/my-book-shelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 KB
/
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
41
42
43
{
"name": "my-book-shelf",
"version": "1.0.0",
"description": "Project for InOut 7.0",
"main": "./build/app.js",
"repository": "https://github.com/Akshay090/my-book-shelf.git",
"author": "Team Bibliophile",
"license": "MIT",
"private": false,
"scripts": {
"start:server": "node ./build/app.js",
"dev:server": "npx nodemon ./build/app.js",
"build:server": "npx tsc",
"build:dev": "npx tsc --watch"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.34",
"@types/node": "^14.14.10",
"@types/qs": "^6.9.5",
"@types/yup": "^0.29.9",
"nodemon": "^2.0.6",
"tsc": "^1.20150623.0",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"oauth-1.0a": "^2.2.6",
"qs": "^6.9.4",
"yup": "^0.31.1"
}
}