-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.89 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
{
"name": "auth_api",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"prebuild": "npm run tslint",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/node": "^14.0.23",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"app-root-path": "^3.0.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.4",
"passport-jwt": "^4.0.0",
"tslint": "^6.1.2",
"typescript": "^3.9.7",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"app"
],
"exec": "npm start",
"ext": "ts json"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.25",
"@types/mongoose": "^5.7.32",
"@types/mongoose-promise": "^4.5.10",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"envalid": "^6.0.2",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.25",
"npm": "^6.14.6",
"path": "^0.12.7",
"ts-node": "^8.10.2"
}
}