-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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": "template-express",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"serve": "nodemon src/index.ts --exec ts-node"
},
"keywords": [],
"author": "Ramos Aparicio",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"fs-extra": "^9.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nanoid": "^3.1.15",
"pug": "^3.0.0",
"socket.io": "^2.3.0",
"sqlite3": "^5.0.0",
"typeorm": "^0.2.28",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-validator": "^3.0.0",
"@types/fs-extra": "^9.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.4",
"@types/node": "^14.11.2",
"@types/socket.io": "^2.1.11",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}