-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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": "typescript-node-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"build": "tsc -p ."
},
"keywords": [],
"author": "GreatLaboratory",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "3.0.6",
"connect-mongo": "^3.2.0",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"express-validator": "^6.2.0",
"helmet": "^3.15.0",
"moment": "^2.24.0",
"mongoose": "^5.3.15",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.0.1",
"@types/connect-mongo": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/errorhandler": "0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.2",
"@types/express-flash": "0.0.1",
"@types/express-session": "^1.15.16",
"@types/express-validator": "^3.0.0",
"@types/helmet": "0.0.45",
"@types/mongoose": "^5.3.3",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.17",
"@types/passport": "^1.0.1",
"@types/passport-facebook": "^2.1.9",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"nodemon": "^2.0.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
}
}