-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "tutorial",
"version": "1.0.0",
"description": "EVA Telemetry Stream",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Geraldo Cisneros",
"license": "ISC",
"suits": {
"bootstrap": [
{
"name": "api",
"script": "app.js",
"enabled": true
},
{
"name": "socketserver",
"script": "./socket/server.js",
"enabled": true
}
]
},
"dependencies": {
"angular": "^1.7.4",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"figlet": "^1.5.2",
"jsonpack": "^1.1.5",
"moment": "^2.29.1",
"mongodb": "^3.1.4",
"mongoose": "^5.2.14",
"simple-json-db": "^1.2.3",
"socket.io": "^4.3.1",
"socket.io-client": "^4.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^1.18.4"
}
}