-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "typescript-express-boilerplate",
"version": "0.2.0",
"scripts": {
"build": "ts-node build.ts && tsc --build tsconfig.prod.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start": "node -r module-alias/register ./dist --NODE_ENV=production",
"start:dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "DEBUG=express:* NODE_ENV=development node -r ts-node/register -r tsconfig-paths/register ./src "
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"eslintIgnore": [
"src/public/",
"build.ts"
],
"dependencies": {
"bcrypt": "5.0.1",
"command-line-args": "5.2.1",
"cookie-parser": "1.4.6",
"dotenv": "16.0.2",
"express": "4.18.1",
"express-async-errors": "3.1.1",
"express-validator": "6.14.2",
"helmet": "6.0.0",
"http-status-codes": "2.2.0",
"jsonfile": "6.1.0",
"jsonwebtoken": "8.5.1",
"module-alias": "2.2.2",
"morgan": "1.10.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/bcrypt": "5.0.0",
"@types/command-line-args": "5.2.0",
"@types/cookie-parser": "1.4.3",
"@types/express": "4.17.13",
"@types/express-validator": "3.0.0",
"@types/find": "0.2.1",
"@types/fs-extra": "9.0.13",
"@types/jasmine": "4.3.0",
"@types/jsonfile": "6.1.0",
"@types/jsonwebtoken": "8.5.9",
"@types/mongoose": "5.11.97",
"@types/morgan": "1.9.3",
"@types/node": "14.18.28",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"eslint": "8.22.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"find": "0.3.0",
"fs-extra": "10.1.0",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"supertest": "6.2.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.3"
}
}