-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.11 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
{
"name": "@igrp/igrp-studio-springboot-engine",
"version": "0.1.0-beta.19",
"description": "Spring Boot API Creation Engine",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"custom": {
"igrpVersion": "0.1.0-beta.1",
"javaVersion": "25",
"springBootVersion": "3.5.10",
"springCloudVersion": "2025.0.1",
"springDocVersion": "2.8.15"
},
"scripts": {
"test": "jest",
"build": "env-cmd -f .env.production tsc && vite build",
"start": "tsc && vite",
"deploy": "npm publish --registry=https://sonatype.nosi.cv/repository/igrp/ --tag latest",
"release": "npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NOSiCode-CV/igrp-studio-springboot-engine.git"
},
"keywords": [
"Spring",
"Engine",
"TypeScript",
"Handlebars",
"API",
"API-Rest"
],
"author": "NOSi E.P.E - Núcleo Operacional Para a Sociedade de Informação",
"license": "ISC",
"dependencies": {
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"axios": "^1.13.2",
"fast-xml-parser": "^5.3.3",
"fs-extra": "^11.3.3",
"inflection": "^3.0.2",
"sass": "^1.97.3",
"pluralize": "^8.0.0",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/pluralize": "^0.0.33",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"env-cmd": "^11.0.0",
"eslint": "^9.39.2",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"handlebars": "^4.7.8",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"type": "commonjs",
"exports": {
"./types": {
"import": "./dist/interfaces/types.d.ts"
},
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
}
}