This repository was archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "analytics-server",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js",
"start": "pm2 start src/app.js --name analytics-server",
"restart": "pm2 restart analytics-server",
"monitor": "pm2 monit",
"logs": "pm2 logs",
"stop": "pm2 stop analytics-server",
"lint": "eslint --ext .js src",
"format": "prettier --ignore-path .gitignore --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"parcel": "^2.8.3",
"pm2": "^5.3.0",
"prettier": "^2.8.8"
},
"dependencies": {
"@fastify/auth": "^4.2.0",
"@fastify/compress": "^6.2.1",
"@fastify/cors": "^8.2.1",
"@fastify/helmet": "^10.1.0",
"@fastify/jwt": "^6.7.1",
"@fastify/one-line-logger": "^1.1.1",
"@fastify/rate-limit": "^8.0.0",
"bcrypt": "^5.1.0",
"bowser": "^2.11.0",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"http-status-codes": "^2.2.0",
"maxmind": "^4.3.11",
"mongoose": "^7.1.0",
"nanoid": "^4.0.2",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"request": "^2.88.2",
"targz": "^1.0.1",
"yamlparser": "^0.0.2"
}
}