-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 967 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 967 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
38
{
"name": "webengineering-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LithX0r/A2B_Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LithX0r/A2B_Backend/issues"
},
"homepage": "https://github.com/LithX0r/A2B_Backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "0.3.19"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^16.11.10",
"nodemon": "^3.0.2",
"ts-node": "10.9.1",
"typescript": "4.5.2"
}
}