-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.01 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
76
77
78
79
80
81
82
83
84
{
"name": "devportal-webapp",
"version": "1.0.62",
"description": "devportal-webapp",
"main": "index.js",
"scripts": {
"design-mode": "npm run build-css --watch & nodemon src/dev-server.js",
"start": "nodemon 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": {
"@asyncapi/react-component": "^2.3.4",
"bootstrap-icons": "^1.11.3",
"chokidar": "^3.6.0",
"crypto": "^1.0.1",
"express": "^4.21.0",
"express-handlebars": "^7.1.3",
"express-session": "^1.18.0",
"fs-extra": "^11.2.0",
"graphiql": "^3.7.1",
"graphql": "^16.9.0",
"handlebars": "^4.7.8",
"hbs": "^4.2.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"marked": "^13.0.3",
"minimatch": "^10.0.1",
"multer": "^1.4.5-lts.1",
"node": "22.0.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.4",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"passport-openidconnect": "^0.0.2",
"path": "^0.12.7",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sequelize": "^6.37.3",
"shelljs": "^0.8.5",
"unzipper": "^0.12.3",
"uuid": "^11.0.3"
},
"bin": {
"app": "src/app.js"
},
"pkg": {
"scripts": [
"**/*.js"
],
"assets": [
"src/pages/**/*"
],
"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"
}
}