-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "nodejs-oracle-database",
"version": "1.0.0",
"description": "This is my experiment to build RESTful APIs using NodeJS, Typescript, TypeORM, Oracle database.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demasy/NodeJS-RESTful-APIs.git"
},
"keywords": [],
"author": "Ahmed El-Demasy <founder@demasy.com> (https://github.com/demasy)",
"license": "ISC",
"bugs": {
"url": "https://github.com/demasy/NodeJS-RESTful-APIs/issues"
},
"homepage": "https://github.com/demasy/NodeJS-RESTful-APIs#readme",
"devDependencies": {
"@types/node": "^22.13.10",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"dependencies": {
"oracledb": "^6.8.0",
"pg": "^8.14.0",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.6",
"sequelize-cli": "^6.6.2",
"typeorm": "^0.3.21"
}
}