-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.37 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "liquido",
"description": "Conjunto de ferramentas para desenvolvimento de aplicações para a internet 100% em português",
"version": "0.2.0",
"author": "Leonel Sanches da Silva",
"contributors": [
{
"name": "Leonel Sanches da Silva",
"url": "https://www.linkedin.com/in/leonelsanchesdasilva/"
},
{
"name": "Italo Brito Brandão",
"url": "https://github.com/ItaloCobains"
}
],
"keywords": [
"português",
"delegua",
"lmht",
"foles",
"lincones"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"bin": {
"liquido": "bin/liquido"
},
"scripts": {
"empacotar": "yarn rimraf ./dist && tsc && yarn copyfiles -V ./bin/liquido ./bin/liquido.cmd ./dist && yarn copyfiles -V ./README.md ./dist",
"publicar-npm": "npm publish --access public",
"iniciar": "nodemon",
"lint-ts": "npx tslint -c tslint.json 'infraestrutura/*.ts' '*.ts' 'interfaces/*.ts'",
"lint": "yarn eslint . --ext .ts",
"prettier-format": "yarn prettier --config .prettierrc infraestrutura/*.ts interfaces/*.ts *.ts --write",
"testes": "yarn jest --coverage",
"testes:w": "yarn jest --runInBand --watchAll",
"predev": "yarn swagger",
"prebuild": "yarn swagger",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec"
},
"dependencies": {
"@designliquido/delegua-node": "^1.3.18",
"@designliquido/flexoes": "^0.1.0",
"@designliquido/foles": "^0.7.4",
"@designliquido/lincones-sqlite": "^0.0.4",
"@designliquido/lmht-js": "^0.5.0",
"body-parser": "^1.20.3",
"chalk": "4.1.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fast-glob": "^3.3.2",
"figlet": "^1.8.0",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"jwt-simple": "^0.5.6",
"morgan": "^1.10.0",
"nodemon": "^3.1.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"prompts": "^2.4.2",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.3",
"@types/express": "^4.17.21",
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/jwt-simple": "^0.5.36",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.1",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/prompts": "^2.4.9",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"concurrently": "^9.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}