-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "swagger-next",
"version": "1.0.0",
"description": "A boilerplate that mixes Swagger (OpenAPI 3.0) and Next.js",
"repository": {
"type": "git",
"url": "https://github.com/Lotti/swagger-next.git"
},
"author": "",
"license": "ISC",
"main": "index.js",
"scripts": {
"build": "next build",
"start": "NODE_ENV=production node index.js",
"watch": "nodemon -r dotenv/config index.js",
"lint": "eslint --fix .",
"push": "bx cf push -f manifest.yaml --vars-file manifest-params-yaml"
},
"dependencies": {
"body-parser": "^1.20.4",
"compression": "^1.8.1",
"errorhandler": "^1.5.1",
"express": "^4.22.1",
"ibm-watson": "^12.1.1",
"js-yaml": "^4.1.1",
"log4js": "^6.4.0",
"next": "^14.2.35",
"node-jq": "^6.0.1",
"oas-tools": "^3.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-react": "^7.17.0",
"nodemon": "^2.0.22"
}
}