-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.85 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "angie-server",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/server.js",
"scripts": {
"build": "npm run build-ts && npm run lint",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"start-ts": "ts-node src/server.ts",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"postinstall": "npm run build",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"start": "npm run serve",
"serve": "node dist/server.js",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll"
},
"dependencies": {
"async": "^3.0.1",
"bcrypt-nodejs": "^0.0.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.8.1",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.16.4",
"express-flash": "0.0.2",
"express-joi-validation": "^4.0.3",
"express-session": "^1.16.2",
"express-validator": "^6.3.0",
"jest-environment-node": "latest",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"mongoose": "^5.8.0",
"mongoose-hidden": "^1.8.1",
"mongoose-lean-virtuals": "^0.5.0",
"morgan": "^1.9.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"password-validator": "^5.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@types/async": "^3.0.0",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.0",
"@types/hapi__joi": "^16.0.4",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.134",
"@types/mongodb": "^3.1.28",
"@types/mongoose": "^5.5.32",
"@types/morgan": "^1.7.37",
"@types/node": "^12.0.12",
"@types/nodemailer": "^6.2.0",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"express-swagger-generator": "^1.1.15",
"jest": "^24.9.0",
"mongodb-memory-server": "^6.0.2",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"keywords": [],
"author": "",
"license": "ISC"
}