This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
forked from pantsel/konga
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.62 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
72
73
74
75
{
"name": "konga",
"version": "0.16.3",
"description": "Konga - Kong Admin GUI",
"keywords": [
"sails.js",
"backend",
"Kong",
"GUI"
],
"dependencies": {
"@slack/client": "^5.0.2",
"async": "^2.6.4",
"barrels": "^1.6.5",
"bcryptjs": "^2.3.0",
"bower": "^1.8.8",
"dotenv": "^6.2.0",
"ejs": "^3.1.8",
"eslint": "^5.16.0",
"grunt": "^1.5.3",
"grunt-sass": "^3.1.0",
"htmlhint": "^1.1.4",
"include-all": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"lesshint": "^6.3.6",
"lodash": "^4.17.21",
"moment": "^2.25.1",
"node-cron": "^3.0.0",
"nodemailer": "^6.6.1",
"nodemailer-mailgun-transport": "^2.1.0",
"passport": "^0.3.0",
"passport-ldapauth": "^3.0.1",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"rc": "^1.2.8",
"sails": "^1.5.2",
"sails-disk": "^2.1.1",
"sails-hook-grunt": "^5.0.0",
"sails-hook-orm": "^4.0.1",
"sails-hook-sockets": "^2.0.1",
"sails-mysql": "^2.0.0",
"sails-postgresql": "^4.0.0",
"sass": "^1.49.7",
"sendmail": "^1.6.1",
"unirest": "0.6.0",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^3.4.0",
"mocha": "^10.0.0",
"should": "^7.1.1",
"supertest": "^6.2.3"
},
"scripts": {
"bower-deps": "bower --allow-root install",
"custom-tests": "mocha",
"debug": "node debug app.js",
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look so good.' && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/**/*.ejs && ./node_modules/htmlhint/bin/htmlhint -c ./.htmlhintrc views/**/**/**/**/**/**/*.ejs && echo '✔ So do your .ejs files.' && ./node_modules/lesshint/bin/lesshint assets/styles/ --max-warnings=0 && echo '✔ Your .less files look good, too.'",
"postinstall": "bower --allow-root install",
"production": "NODE_ENV=production node app.js",
"start": "node app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/onematchfox/konga.git"
},
"engines": {
"node": "^16.15"
},
"author": "Tselentis Panagis",
"license": "MIT"
}