-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "public-api-sdk-ts",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test uvu dist/test-express-app/tests",
"dev": "nodemon --exec ts-node dist/test-express-app/server.js",
"build": "tsc",
"watch": "tsc --watch",
"start": "nodemon dist/test-express-app/server.js",
"download-schema": "curl -o public.yml https://online.sandbox.narmi.dev/v1/schema",
"remove-schema": "rm public.yml",
"generate-sdk": "openapi-generator-cli generate -i public.yml -g typescript-fetch -o ./src/sdk/generated-sdk --skip-validate-spec",
"remove-sdk": "rm -rf ./src/sdk/generated-sdk",
"git-add-sdk": "git add ./src/sdk/generated-sdk"
},
"keywords": [],
"author": "Narmi",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^1.20.3",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.15.3",
"@types/express": "^4.17.21",
"@types/node": "^22.0.1",
"@types/supertest": "^6.0.2",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"uvu": "^0.5.6"
}
}