-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 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
87
88
89
{
"name": "create-sojeb-express-ts-app",
"version": "1.9.7",
"description": "Boilerplate to create a new express typescript project",
"repository": {
"type": "git",
"url": "git+https://github.com/SojebSikder/create-sojeb-express-ts-app.git"
},
"keywords": [
"create-sojeb-express-ts-app",
"express Boilerplate",
"typescript express",
"typescript express boilerplate",
"express typescript boilerplate",
"express typescript"
],
"homepage": "https://github.com/SojebSikder/create-sojeb-express-ts-app#readme",
"main": "app.ts",
"author": "Sojeb Sikder <[email protected]>",
"license": "MIT",
"bin": "./bin/cli.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "ts-node app.ts",
"start:dev": "nodemon app.ts",
"start:prod": "node dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./tests/jest-e2e.json",
"cmd": "ts-node cmd.ts"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^4.14.0",
"@types/html-pdf": "^3.0.0",
"aws-sdk": "^2.1377.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"helmet": "^6.2.0",
"html-pdf": "^3.0.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.9.2",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"paypal-rest-sdk": "^1.8.1",
"redis": "^4.6.6",
"socket.io": "^4.6.1",
"stripe": "^9.16.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@swc/core": "^1.3.57",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.21",
"@types/node": "^18.16.9",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth2": "^0.1.5",
"@types/paypal-rest-sdk": "^1.7.6",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prisma": "^4.14.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}