-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 964 Bytes
/
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
{
"name": "crud-produtos",
"version": "1.0.0",
"description": "CRUD de produtos em Node.js, utilizando TypeORM",
"main": "index.js",
"scripts": {
"start": "tsnd --transpile-only --respawn --ignore-watch node_modules ./src/server.ts",
"lint": "eslint . --ext .ts",
"build": "tsc --target ES6"
},
"author": "Augusto Preis",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/node": "^20.9.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"winston": "^3.13.0"
}
}