-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "tradebyte",
"version": "1.0.0",
"description": "Stocks Trading Simulation WebApp",
"main": "app.js",
"scripts": {
"build:css": "postcss public/css/tailwind.css -o public/css/style.css",
"start": "concurrently \"cross-env NODE_ENV=production node app\" \"npm:build:css\"",
"dev": "concurrently \"cross-env NODE_ENV=development nodemon app\" \"npm:build:css\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/iampavangandhi/TradeByte.git"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"stocks",
"trading"
],
"author": "Pavan Gandhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/iampavangandhi/TradeByte/issues"
},
"homepage": "https://github.com/iampavangandhi/TradeByte#readme",
"dependencies": {
"alphavantage": "^2.1.0",
"autoprefixer": "^9.8.6",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"googleapis": "^39.2.0",
"method-override": "^3.0.0",
"mongoose": "^5.9.25",
"mongoose-float": "^1.0.4",
"morgan": "^1.10.0",
"nodemailer": "^6.4.16",
"npm": "^6.14.7",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"postcss-cli": "^7.1.1",
"stripe": "^8.89.0",
"tailwindcss": "^1.6.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"cssnano": "^4.1.10",
"nodemon": "^2.0.4"
}
}