-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
{
"name": "backend",
"version": "1.0.0",
"description": "API structure built using TypeScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc-watch --onSuccess \"node ./dist/app.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.29",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-flash": "0.0.2",
"@types/hapi__joi": "^16.0.12",
"@types/jsonwebtoken": "^8.3.7",
"@types/mongoose": "^5.7.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.4",
"mongoose": "^5.9.2",
"slugify": "^1.3.6",
"tsc-watch": "^4.1.0"
},
"devDependencies": {
"@types/express-session": "^1.17.0",
"@types/node": "^13.7.6",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}