-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "node-ts-app",
"version": "1.0.0",
"description": "A complete Node.js project template using TypeScript and following general best practices.",
"keywords": [
"typescript",
"template"
],
"author": {
"name": "Gabriel Maia",
"url": "https://github.com/gabrielmaialva33"
},
"repository": {
"type": "git",
"url": "https://github.com/gabrielmaialva33/node-ts-app.git"
},
"engines": {
"node": ">=22.13.0"
},
"private": true,
"main": "build/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "rimraf build && tsc",
"start": "node build/src/index.js",
"start:dev": "tsc --watch & nodemon build/src/index.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/app"
},
"prettier": "@adonisjs/prettier-config",
"devDependencies": {
"@adonisjs/eslint-config": "2.0.0-beta.7",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.9",
"openapi-types": "^12.1.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"reflect-metadata": "^0.2.2",
"source-map-support": "^0.5.21"
}
}