-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
59
{
"name": "ehackathon",
"version": "1.0.0",
"description": "Web Application for purchase 2hands products",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-esm",
"init-database": "typeorm-ts-node-esm schema:sync -d ./src/data.ts",
"add-migration": "typeorm-ts-node-esm migration:generate ./src/migrations/seed -d ./src/data.ts",
"run-migration": "typeorm-ts-node-esm migration:run -d ./src/data.ts",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "https://github.com/MinhhTien/2ndGoods-EHackathon-2022-BE.git"
},
"keywords": [
"Backend",
"ORM",
"Typescript",
"NodeJS",
"MySQL",
"Database"
],
"author": "BE Team EHackathon",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.2",
"express": "^4.18.2",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.8.0",
"socket.io": "^4.5.2",
"typeorm": "^0.3.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.21",
"@types/nodemailer": "^6.4.6",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}