-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "orionscommerce",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:build": "tsc -w",
"start:run": "nodemon build/server.js",
"start": "NODE_ENV=production concurrently npm:start:*",
"dev": "tsc -w & nodemon build/server.js"
},
"author": "bhoopendra",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cli-color": "^2.0.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-flash": "^0.0.2",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/passport": "^1.0.8",
"@types/passport-google-oauth20": "^2.0.11",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cli-color": "^2.0.2",
"concurrently": "^7.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.6",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"@types/node": "^17.0.44",
"nodemon": "^2.0.16"
}
}