-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "CodersCamp2020.Project.FullStack-Node-React.PikaBook",
"version": "0.0.0",
"scripts": {
"build": "ts-node build.ts",
"lint": "eslint . --ext .ts",
"start": "node -r module-alias/register ./dist --env=production",
"start:dev": "nodemon",
"test": "jest"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register ./src"
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"max-len": [
"error",
{
"code": 100
}
],
"no-console": 1,
"no-extra-boolean-cast": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-assignment": 0
}
},
"eslintIgnore": [
"src/public/",
"build.ts"
],
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express-jwt": "^6.0.1",
"@types/jsonwebtoken": "^8.5.0",
"bcrypt": "^5.0.1",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-jwt": "^6.0.0",
"googleapis": "^67.1.1",
"helmet": "^4.4.1",
"helmet-crossdomain": "^0.5.0",
"http-status-codes": "^2.1.4",
"jet-logger": "^1.0.4",
"joi": "^17.4.0",
"jsonfile": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mongodb": "^3.6.3",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/find": "^0.2.1",
"@types/fs-extra": "^9.0.7",
"@types/jasmine": "^3.6.4",
"@types/jest": "^26.0.20",
"@types/joi": "^17.2.3",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.168",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.31",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"find": "^0.3.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.2"
}
}