-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.45 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
{
"name": "startersaas-node-api",
"version": "4.0.0",
"description": "StarterSaaS Node API",
"license": "MIT",
"author": "Stefano Mancini <[email protected]> (https://www.devinterface.com)",
"homepage": "https://www.startersaas.com",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js | pino-pretty ",
"prod": "node index.js | pino-pretty ",
"store:emails": "node scripts/storeEmails.js | pino-pretty",
"format": "prettier --write ."
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^1.2.3",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"http-status-codes": "^2.2.0",
"json2xml": "^0.1.3",
"jsonwebtoken": "^9.0.0",
"liquidjs": "^10.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moneysafe": "^2.2.1",
"mongoose": "^6.8.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-polyglot": "^2.4.0",
"nodemailer": "^6.6.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pino": "^8.8.0",
"querystring": "^0.2.1",
"redis": "^4.5.1",
"slugify": "^1.6.1",
"static-asset": "^0.6.0",
"stripe": "^11.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^10.2.0",
"nodemon": "^2.0.7",
"pino-pretty": "^9.1.1",
"supertest": "^6.1.3",
"prettier": "^2.8.7"
}
}