forked from liamcottle/meshtastic-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "meshtastic-map",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "jest",
"start": "node src/index.js",
"start:mqtt": "node src/mqtt.js",
"start:admin": "node src/admin.js",
"dev": "concurrently \"npm run start\" \"npm run start:mqtt\"",
"start:all": "concurrently \"npm run start\" \"npm run start:mqtt\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:studio": "prisma studio",
"setup": "npm install && npm run prisma:generate",
"deploy": "npm run setup && npm run prisma:migrate && npm run start:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.11.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"compression": "^1.7.4",
"dotenv": "^16.4.7",
"express": "^4.18.3",
"mqtt": "^5.3.6",
"protobufjs": "^7.2.6"
},
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"prisma": "^5.10.2"
}
}