-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.47 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "uae",
"productName": "Web and Electron App",
"version": "0.0.1",
"description": "Proyecto para la Gestión Económica de la UPCT",
"main": "./src/index.js",
"scripts": {
"static": "gulp",
"start": "node ./src/index.js",
"dev": "nodemon --watch src ./src/index.js",
"build-dev": "clear & gulp & nodemon --watch src ./src/index.js",
"dev-parallel": "npm-run-all --parallel static dev",
"pc": "clear & electron --no-sandbox ./src/main.js",
"zip": "rm *.zip & rm *.tgz & npm-pack-zip & npm pack",
"package-win": "electron-packager . electron-tutorial-app --overwrite --asar=true --platform=win32 --arch=ia32 --icon=src/public/img/upct-azul-logo.png --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Electron App\"",
"package-linux": "electron-packager . electron-tutorial-app --overwrite --asar=true --platform=linux --arch=x64 --icon=src/public/img/upct-azul-logo.png --prune=true --out=release-builds",
"doc": "jsdoc -c jsdoc.json",
"test": "jest --watch --verbose ./tests"
},
"keywords": [
"uae",
"upct",
"universidad",
"cartagena",
"politécnica"
],
"author": "Pablo Rosique Vidal <pableke@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"firebase-admin": "^9.4.1",
"formidable": "^1.2.2",
"html-pdf": "^2.2.0",
"latest": "^0.2.0",
"mongoose": "^5.10.9",
"myjson-box": "0.0.9",
"mysession": "^1.0.2",
"mysql": "^2.18.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.11",
"tree-ss": "0.0.8",
"validate-box": "^0.3.5",
"web-push": "^3.4.4"
},
"devDependencies": {
"better-docs": "^2.3.2",
"electron": "^10.1.5",
"electron-packager": "^15.1.0",
"electron-reload": "^1.5.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^5.0.1",
"gulp-minify": "^3.1.0",
"gulp-replace": "^1.0.0",
"gulp-strip-comments": "^2.5.2",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"jsdoc-mermaid": "^1.0.0",
"merge-stream": "^2.0.0",
"nodemon": "^2.0.4",
"npm-pack-zip": "^1.2.7",
"npm-run-all": "^4.1.5"
},
"directories": {
"doc": "docs"
},
"nodemonConfig": {
"verbose": false,
"ignore": [
"dbs/**/*",
"src/public/**/*",
"src/views/**/*"
]
},
"jest": {
"modulePathIgnorePatterns": [
"dbs"
]
}
}