-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 993 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
36
37
38
39
{
"name": "node-crud-operation",
"version": "1.0.0",
"description": "This is a simple node CRUD operation in Typescript and SQL",
"main": "src/app.ts",
"scripts": {
"start": "nodemon --exec ts-node src/app/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnBashombe/Node-CRUD-operation.git"
},
"keywords": [
"Backend",
"ORM",
"Typescript",
"node",
"SQL",
"Database"
],
"author": "Ntavigwa Bashombe",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohnBashombe/Node-CRUD-operation/issues"
},
"homepage": "https://github.com/JohnBashombe/Node-CRUD-operation#readme",
"dependencies": {
"dotenv": "^16.0.0",
"express": "^4.17.2",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typeorm": "^0.2.41",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/express": "^4.17.13"
}
}