-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.84 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
65
66
{
"name": "trendtrove-wears",
"version": "1.0.0",
"description": "A fully functional e-commerce websites for clothing with the latest trends",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"format": "eslint 'src/**/*.{ts,tsx}' --fix",
"build": "tsc",
"dev": "nodemon ./src/server.ts",
"start": "node ./dist/server.js",
"seed": "tsx ./src/database/seed.ts"
},
"keywords": [],
"author": "Emmanuel Oloyede",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.8",
"@types/multer": "^1.4.9",
"@types/nodemailer": "^6.4.14",
"@types/passport-local": "^1.0.36",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"tsx": "^4.7.3",
"typescript": "^5.1.6"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"mongodb": "^6.3.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.8",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1",
"stripe": "^14.10.0"
},
"engines": {
"node": "v20.11.1"
}
}