-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "Ecommerce_API",
"version": "1.0.0",
"description": "An eccommerce API using Express, Javascript,Typescript, and MongoDB",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --maxWorkers=4",
"start:dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"start:prod:local": "cross-env NODE_ENV=production npm-run-all clean lint build start:init",
"start": "cross-env NODE_ENV=production node dist/src/index.js",
"start:init": "node dist/src/index.js",
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": "12.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KNehe/Ecommerce_API.git"
},
"keywords": [],
"author": "Nehemiah Kamolu",
"license": "ISC",
"bugs": {
"url": "https://github.com/KNehe/Ecommerce_API/issues"
},
"homepage": "https://github.com/KNehe/Ecommerce_API#readme",
"dependencies": {
"@types/morgan": "^1.9.2",
"bcryptjs": "^2.4.3",
"braintree": "^3.1.0",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"googleapis": "^68.0.0",
"jsonwebtoken": "^8.5.1",
"loadash": "^1.0.0",
"mongoose": "^5.12.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.4.14",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"stream-buffers": "^3.0.2",
"stripe": "^8.121.0",
"validator": "^13.1.17"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcryptjs": "^2.4.2",
"@types/braintree": "^2.22.6",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.165",
"@types/mongoose": "^5.7.37",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.6",
"@types/nodemailer": "^6.4.0",
"@types/passport-facebook": "^2.1.10",
"@types/passport-google-oauth20": "^2.0.4",
"@types/stream-buffers": "^3.0.3",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}