-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 814 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 814 Bytes
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
{
"name": "api_smart_stock_tracker",
"version": "1.0.0",
"description": "",
"main": "api/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --watch --no-warnings api/index.js | npx pino-pretty",
"dev": "nodemon api/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/mongodb": "^7.0.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"coingecko-api": "^1.0.10",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fastify": "^4.17.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.8.1",
"mongoose": "^6.5.2"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}