-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "express-mysql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "set ENV=DEV&& env ENV=DEV concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"prod": "set ENV=PROD&& env ENV=PROD concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.2.1",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"slugify": "^1.6.5",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.15",
"@types/helmet": "^4.0.0",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.18",
"morgan": "^1.10.0",
"typescript": "^4.9.4"
}
}