-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 849 Bytes
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
{
"name": "@felipemenezesdm/general-maven-library-template",
"version": "1.0.0",
"description": "Modelo padrão para criação de bibliotecas TypeScript.",
"main": "./dist/app.js",
"scripts": {
"build": "tsc --declaration",
"dev": "ts-node-dev -r dotenv/config --respawn --transpile-only src/app.ts"
},
"keywords": [
"node-js",
"node",
"ts",
"typescript",
"js",
"javascript",
"route",
"template",
"model"
],
"author": "Felipe Menezes",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/FelipeMenezesDM/general-maven-library-template.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"dotenv": "^16.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
}
}