-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "backend",
"version": "1.0.0",
"main": "dist/src/app",
"scripts": {
"dev": "nodemon src/index.ts --exec ts-node",
"build": "tsc",
"start": "concurrently \"tsc -w\" \"nodemon ./dist/src/index.js\""
},
"repository": "",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.3",
"@types/pg": "^7.14.11",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^12.12.32",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/morgan": "^1.9.0",
"concurrently": "^5.1.0",
"express": "^4.17.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"moment": "^2.24.0",
"ts-node": "^8.8.1",
"nodemon": "^1.19.4",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^1.7.0",
"mysql2-promise": "^0.1.4",
"typescript": "^3.8.3",
"node": "^12.16.1",
"pg": "^7.18.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/morgan": "^1.9.0",
"@types/pg": "^7.14.11",
"concurrently": "^5.1.0",
"express": "^4.17.1",
"nodemon": "^1.19.4",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}