-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "im3-api",
"main": "src/index.js",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.7.3",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.2",
"livekit-server-sdk": "^2.6.1",
"moment": "^2.30.1",
"mongoose": "^8.3.1",
"morgan": "^1.9.1",
"node-cache": "^5.1.2",
"pm2": "^5.3.1",
"uui": "^1.0.7",
"uuid": "^10.0.0",
"validator": "^13.0.0",
"viem": "^2.17.3",
"winston": "^3.13.0"
},
"devDependencies": {
"axios": "^1.7.3",
"coveralls": "^3.0.7",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^3.0.0",
"faker": "^6.6.6",
"husky": "9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"node-mocks-http": "^1.14.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
}
}