-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.84 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.84 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
{
"name": "espauthabsent",
"version": "2.2.0",
"description": "Standalone ESPxx Auth Server running on Node.js with Express, with database support, either MySQL or NoSQL with Firebase",
"main": "app.js",
"scripts": {
"test": "nyc ts-mocha -p tsconfig.json src/test/*.spec.ts",
"dev": "nodemon ./src/app.ts",
"devmysql": "concurrently --kill-others \"npm run startmysql\" \" npm run startmqtt\"",
"devfirebase": "concurrently --kill-others \"npm run startfirebase\" \" npm run startmqtt\"",
"startmysql": "node appDefault.js",
"startmqtt": "node mq.js",
"startfirebase": "node appFirebase.js"
},
"imports": {
"#models/*": "./src/models/*.ts",
"#routes/*": "./src/routes/*.ts",
"#controllers/*": "./src/controllers/*.ts",
"#utils/*": "./src/utils/*.ts",
"#events/*": "./src/events/*.ts",
"#config/*": "./src/config/*.ts",
"#loaders/*": "./src/loaders/*.ts"
},
"author": "Cydnirn, Harryawan, BossBaby11",
"license": "ISC",
"dependencies": {
"aedes": "^0.50.0",
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"express-rate-limit": "^6.7.0",
"firebase-admin": "^11.5.0",
"helmet": "^6.0.1",
"http": "^0.0.1-security",
"mqtt": "^4.3.7",
"mysql": "^2.18.1",
"net": "^1.0.2",
"pm2": "^5.3.1",
"sequelize": "^6.33.0",
"util": "^0.12.5"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"sinon": "^16.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}