-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"name": "5g-interiores",
"version": "1.0.0",
"private": "true",
"main": "index.js",
"scripts": {
"start": "node server.index.js",
"dev": "NODE_ENV=development npx nodemon index.js",
"prod": "NODE_ENV=production node index.js",
"compile": "NODE_ENV=development npx tsc -p ./client/ ",
"client-dev": "NODE_ENV=development npx tsc -p ./client/ --watch",
"db-maintenance" : "node db.maintenance.js",
"dev:debug": "NODE_ENV=development npx nodemon --inspect index.js",
"deploy": "./test.sh --environment production ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "@ESPACIOSOA | Alejandro Rey López - https://alreylz.me/ ",
"license": "ISC",
"description": "A web application for managing and visualizing 5G indoor positioning data recorded using a mobile app. The application allows users to upload, visualize, and analyze the data, providing insights into indoor positioning accuracy and performance.",
"dependencies": {
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"heatmap.js": "^2.0.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.1.9",
"typescript": "^5.8.2"
}
}