-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.72 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": "ch-node-site",
"version": "1.0.0",
"description": "Sitio desarrollado para la cursada de Backend de Coderhouse",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon --ignore test/* --exec ts-node src/app.ts ",
"start": "pm2-runtime start ecosystem.config.js --env development",
"test-axios": "ts-node src/modules/test/axios.test.ts",
"test-mocha": "ts-mocha src/modules/test/supertest.test.ts > logs/mocha-results.log",
"fork": "pm2 start dist/app.js --name app8080 --watch -- --port 8080",
"cluster": "pm2 start dist/app.js --name app8081 --watch -i max -- --port 8081"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notSagyo/ch-node-site.git"
},
"author": "notSagyo",
"license": "ISC",
"bugs": {
"url": "https://github.com/notSagyo/ch-node-site/issues"
},
"homepage": "https://github.com/notSagyo/ch-node-site#readme",
"dependencies": {
"@faker-js/faker": "^7.4.0",
"@firebase/firestore": "^3.4.14",
"autocannon": "^7.9.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"firebase": "^9.9.3",
"graphql": "^16.6.0",
"image-type": "4.0.0",
"knex": "^2.2.0",
"lodash": "^4.17.21",
"log4js": "^6.6.1",
"minimist": "^1.2.6",
"mongodb": "^4.10.0",
"mongoose": "^6.5.3",
"multer": "1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.7.8",
"normalizr": "^3.6.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pm2": "^5.2.0",
"socket.io": "^4.5.1",
"sqlite3": "^5.0.11",
"twilio": "^3.81.0",
"typescript": "^4.8.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/autocannon": "^7.6.1",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/lodash": "^4.14.185",
"@types/minimist": "^1.2.2",
"@types/mocha": "^9.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.13",
"@types/nodemailer": "^6.4.5",
"@types/passport": "^1.0.10",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"axios": "^0.27.2",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-plugin-react": "^7.31.0",
"mocha": "^10.0.0",
"supertest": "^6.2.4",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1"
}
}