-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.25 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "jessie",
"version": "1.0.0",
"description": "Fundy Backend",
"main": "src/index.ts",
"scripts": {
"test": "npx jest --coverage",
"build": "tsc",
"docs": "jsdoc -c jsdoc.json ./src/**/**/routes.ts README.md",
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"lint": "npx eslint -c .eslintrc.js ./src --ext .ts",
"lint:fix": "npx eslint -c .eslintrc.js ./src --ext .ts --fix",
"db": "yarn db:gen && yarn db:up && yarn db:save",
"db:up": "prisma migrate dev",
"db:gen": "prisma generate",
"db:seed": "ts-node prisma/seed.ts",
"db:save": "prisma migrate save --experimental",
"db:studio": "prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fundy/Jessie.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Buddy-EIP/back/issues"
},
"homepage": "https://github.com/Buddy-EIP/back#readme",
"dependencies": {
"@prisma/client": "^3.12.0",
"@types/ejs": "^3.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/mjml": "^4.7.0",
"@types/nodemailer": "^6.4.4",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.20.1",
"canvas": "^2.11.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"ejs": "^3.1.8",
"esm": "^3.2.25",
"expo-server-sdk": "^3.6.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"http-status-codes": "^2.1.4",
"is-valid-coordinates": "^1.0.0",
"jsdocs": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mjml": "^4.12.0",
"moment": "^2.29.1",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.6",
"prom-client": "^14.0.1",
"redis": "^3.0.2",
"socket.io": "^4.5.4",
"stripe": "^8.191.0",
"taffydb": "^2.7.3",
"truelayer-client": "^1.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"uuid": "^8.3.2",
"validation-latitude-longitude": "^1.1.3",
"winston": "^3.3.3",
"winston-loki": "^6.0.6"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/connect-redis": "^0.0.15",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/http-status-codes": "^1.2.0",
"@types/node-cron": "^3.0.1",
"@types/redis": "^2.8.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"better-docs": "^2.7.2",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.4",
"prisma": "^3.12.0",
"supertest": "^6.2.2",
"supertest-session": "^4.1.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.4"
}
}