-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "devportal-webapp",
"version": "1.0.80",
"description": "devportal-webapp",
"main": "index.js",
"scripts": {
"design-mode": "npm run build-css --watch & nodemon src/dev-server.js",
"start": "nodemon --ignore 'generated-sdks/**/*' src/app.js",
"debug": "nodemon --inspect --ignore 'generated-sdks/**/*' src/app.js",
"multi-tenant": "npm run build-css --watch & nodemon src/multi-tenant.js",
"build-css": "node watcher.js",
"build": "pkg ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wso2/api-developer-portal-core.git"
},
"keywords": [
"Devportal",
"Node.js"
],
"author": "Divya Premanantha",
"license": "ISC",
"bugs": {
"url": "https://github.com/api-developer-portal-core/issues"
},
"homepage": "https://github.com/api-developer-portal-core#readme",
"dependencies": {
"@openapitools/openapi-generator-cli": "2.21.3",
"applicationinsights": "2.9.7",
"archiver": "7.0.1",
"basic-ftp": "5.2.0",
"async-lock": "1.4.1",
"axios": "1.11.0",
"bootstrap-icons": "1.11.3",
"chalk": "4.1.2",
"chokidar": "3.6.0",
"connect-pg-simple": "10.0.0",
"crypto": "1.0.1",
"express": "4.21.2",
"express-handlebars": "7.1.3",
"express-session": "1.18.1",
"express-validator": "7.2.0",
"fs-extra": "11.2.0",
"graphiql": "3.7.1",
"graphql": "16.9.0",
"handlebars": "4.7.9",
"hbs": "4.2.0",
"https": "1.0.0",
"install": "0.13.0",
"ioredis": "5.3.2",
"jose": "5.9.6",
"js-yaml": "4.1.0",
"jsonwebtoken": "9.0.2",
"marked": "13.0.3",
"minimatch": "10.0.1",
"moesif-nodejs": "^3.11.0",
"multer": "1.4.5-lts.1",
"node": "22.0.0",
"node-fetch": "^2.7.0",
"nodemon": "3.1.4",
"npm": "11.2.0",
"passport": "0.7.0",
"passport-custom": "1.1.1",
"passport-local": "1.0.0",
"passport-oauth2": "1.8.0",
"passport-openidconnect": "0.1.2",
"path": "0.12.7",
"pg": "8.14.0",
"pg-hstore": "2.3.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"redis": "4.6.0",
"sequelize": "6.37.3",
"shelljs": "0.8.5",
"stripe": "20.0.0",
"unzipper": "0.12.3",
"uuid": "11.1.0",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0"
},
"overrides": {
"handlebars": "4.7.9"
},
"applicationInsights": {
"excludeModules": ["basic-ftp"]
},
"bin": {
"app": "src/app.js"
},
"pkg": {
"scripts": [
"**/*.js"
],
"assets": [
"src/pages/**/*",
"src/styles/**/*",
"node_modules/axios/**/*"
],
"targets": [
"node18-macos-x64",
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "dist"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"eslint": "9.15.0",
"globals": "15.12.0",
"pkg": "5.8.1"
}
}