-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.56 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": "simpleservermonitoring",
"description": "The first steps in the node.js development, using express. Also it's using the vue.js for the frontend.",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node index.js",
"migrate": "node server/bin/migrate.js",
"insert_abilities": "node server/bin/insertionAbilities.js",
"insert_default_permission": "node server/bin/insertionDefaultPermission.js",
"test_user_db": "node server/test/testUsersMethods.js",
"test_project_db": "node server/test/testProjectMethods.js",
"test_server_db": "node server/test/testServerMethods.js",
"test_tag_db": "node server/test/testTagMethods.js",
"test_permission_db": "node server/test/testPermissionMethods.js",
"test_ability_db": "node server/test/testAbilityMethods.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvilMurlok/simpleServerMonitoring.git"
},
"keywords": [
"node",
"server",
"monitoring",
"training"
],
"author": "Ilya Panin",
"license": "ISC",
"bugs": {
"url": "https://github.com/EvilMurlok/simpleServerMonitoring/issues"
},
"homepage": "https://github.com/EvilMurlok/simpleServerMonitoring#readme",
"dependencies": {
"bcrypt": "5.0.1",
"body-parser": "1.19.2",
"express": "4.17.3",
"express-flash": "0.0.2",
"express-session": "1.17.2",
"morgan": "1.10.0",
"passport": "0.5.2",
"passport-local": "1.0.0",
"pg": "8.7.3",
"prom-client": "14.0.1",
"prometheus-api-metrics": "3.2.1",
"sequelize": "6.16.2"
}
}