-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "jasyp-c4p",
"version": "0.0.1",
"author": "Germán Martínez Maldonado <germaaan@protonmail.com>",
"description": "Aplicación para gestionar las solicitudes para las JASYP",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Interferencias/jasyp_c4p.git"
},
"bugs": {
"url": "https://github.com/Interferencias/jasyp_c4p/issues"
},
"homepage": "https://interferencias.tech/jasyp/",
"main": "bin/www",
"os": "linux",
"arch": "x64",
"private": true,
"directories": {
"lib": "lib",
"bin": "bin",
"doc": "README.md"
},
"dependencies": {
"basic-auth": "^2.0.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"dotenv": "^5.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"json2csv": "^3.11.5",
"morgan": "^1.9.0",
"mysql2": "^1.5.1",
"nodemailer": "^4.4.2",
"sequelize": "^4.32.2",
"serve-favicon": "^2.4.5",
"sqlite3": "^3.1.13"
},
"devDependencies": {
"js-beautify": "^1.7.5",
"jshint": "^2.9.1",
"nodemon": "^1.14.11",
"npm-check": "^5.5.2",
"pm2": "^2.9.3"
},
"engines": {
"node": "^8.9.1",
"npm": "^5.6.0"
},
"scripts": {
"debug": "nodemon bin/www",
"start": "pm2 start app.json",
"stop": "pm2 stop app.json",
"restart": "pm2 restart app.json",
"save": "pm2 save",
"libs": "bower install",
"check": "npm-check -u",
"beautify": "js-beautify -r *.json *.js bin/www config/* lib/*.js lib/models/* routes/*",
"jshint": "jshint *.json *.js bin/www config/* lib/*.js lib/models/* routes/*"
}
}