-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
{
"name": "pdf-automator",
"description": "Creates PDFs from JSON",
"author": "SAFS",
"version": "1.0.0",
"type": "module",
"main": "source/main.js",
"scripts": {
"start": "node source/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec 'npm run build:css && npm run start'",
"build:css": "postcss tailwind.input.css -o public/styles/tailwind.output.css"
},
"keywords": [
"PDF",
"JSON"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Safe-and-Fast-Software/PDF-Creater/issues"
},
"private": true,
"homepage": "https://github.com/Safe-and-Fast-Software/PDF-Creater#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Safe-and-Fast-Software/PDF-Creater.git"
},
"imports": {
"#source/*": "./source/*"
},
"dependencies": {
"-": "^0.0.1",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"axios": "^1.7.4",
"connect-redis": "^7.1.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"http-status-codes": "^2.3.0",
"module-alias": "^2.2.3",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"pdfmake": "^0.2.11",
"postcss": "^8.4.41",
"redis": "^4.7.0",
"redis-om": "^0.4.7",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"cssnano": "^7.0.5",
"depcheck": "^1.4.7",
"nodemon": "^3.1.4",
"tailwindcss": "^3.4.10"
},
"nodemonConfig": {
"verbose": true,
"watch": [
"**/*.*"
],
"ignore": [
"**/*.log",
"**/*.md",
"**/*.nix",
"**/.vscode/*",
"**/*.http",
"pubic/**/*"
]
}
}