-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.16 KB
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
{
"name": "ec-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"populate": "ts-node populate.ts",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"start": "node dist/index.js",
"test": "jest --coverage",
"watch": "tsc -w",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"cluster": "pm2 start src/index.ts -i 0 --watch",
"deploy-cluster": "npm run build && npm run cluster",
"to-schema": "ts-node src/utils/interfaceToSchema.ts"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@faker-js/faker": "^8.0.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.29",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.4",
"@types/nodemailer-smtp-transport": "^2.7.5",
"@types/ramda": "^0.28.14",
"@types/validator": "^13.7.3",
"jest": "^28.1.3",
"nodemon": "^2.0.18",
"pino-pretty": "^8.1.0",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@typegoose/typegoose": "^9.9.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"argon2": "^0.28.5",
"cors": "^2.8.5",
"dayjs": "^1.11.3",
"dotenv": "^16.0.1",
"env-cmd": "^10.1.0",
"express": "^4.18.1",
"google-auth-library": "^8.3.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.1",
"morgan": "^1.10.0",
"nanoid": "^3.1.28",
"nodemailer": "^6.7.7",
"nodemailer-smtp-transport": "^2.7.4",
"pino": "^8.1.0",
"ramda": "^0.28.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"typescript-json-schema": "^0.53.1",
"validator": "^13.7.0"
}
}