-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.76 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
87
88
89
90
91
92
93
{
"name": "afrive_book_store",
"proxy": "https://afrive-book-store.herokuapp.com/",
"version": "1.0.0",
"description": "Afrive is a digital solution which allows users shop for books from various African authors across different genres. It also allows users write book reviews and make book recommendations. Everything a book lover needs in one platform.",
"main": "src/v1/server.ts",
"scripts": {
"lint": "npx prettier --write . && npx eslint",
"start": "NODE_ENV=production node build/src/server.js",
"dev": "nodemon src/server.ts",
"build": "tsc",
"jasmine": "NODE_ENV=test jasmine",
"test": "npx tsc && db-migrate --env dev up && npm run jasmine",
"test-down": "db-migrate --env test down --count 20",
"postinstall": "tsc",
"reset": "db-migrate --env production reset && db-migrate --env production up && npm run start",
"migrate": "prisma migrate dev"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ogmaro/afrive_book_store.git"
},
"keywords": [
"Book",
"Store",
"African",
"Afirca"
],
"author": "Njoli Patrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/ogmaro/afrive_book_store/issues"
},
"homepage": "https://github.com/ogmaro/afrive_book_store#readme",
"dependencies": {
"@prisma/client": "^4.13.0",
"@sendgrid/mail": "^7.7.0",
"@types/dateformat": "^5.0.0",
"@types/multer": "^1.4.7",
"@types/validatorjs": "^3.15.0",
"apicache": "^1.6.3",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dateformat": "^5.0.3",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^7.0.1",
"google-auth-library": "^8.0.2",
"googleapis": "^103.0.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nodemailer": "^6.9.1",
"pg": "^8.7.3",
"request": "^2.88.2",
"supertest": "^6.2.3",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jasmine": "^4.0.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.194",
"@types/morgan": "^1.9.3",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.5",
"@types/response-time": "^2.3.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"errorhandler": "^1.5.1",
"eslint": "^8.15.0",
"i": "^0.3.7",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"npm": "^9.8.1",
"prettier": "^2.6.2",
"prisma": "^4.13.0",
"response-time": "^2.3.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}