-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.38 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
{
"name": "test-ds",
"version": "0.0.1",
"description": "DS test solution",
"repository": {
"type": "git",
"url": "https://github.com/lobanov-oleh/test-ds"
},
"author": "Oleh Lovanov",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint",
"serve": "node dist/server.js",
"watch-node": "nodemon -r tsconfig-paths/register dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "mocha -r ts-node/register -r tsconfig-paths/register --timeout 10000 test/**/*.test.ts",
"test-dev": "nodemon --watch . --ext ts --exec \"mocha -r ts-node/register -r tsconfig-paths/register --timeout 10000 test/**/*.test.ts\"",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc -p tsconfig.build.json",
"watch-ts": "tsc -p tsconfig.build.json -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon -r tsconfig-paths/register --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"async": "^3.1.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-validator": "^6.3.0",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.6.1",
"module-alias": "^2.2.2",
"mongoose": "^5.7.1",
"multer": "^1.4.2",
"swagger-ui-express": "^4.1.2",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^3.0.2",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.3",
"@types/compression": "^1.0.1",
"@types/concurrently": "^4.1.0",
"@types/dirty-chai": "^2.0.2",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-jwt": "0.0.42",
"@types/express-validator": "^3.0.0",
"@types/fluent-ffmpeg": "^2.1.12",
"@types/jsonwebtoken": "^8.3.5",
"@types/lusca": "^1.6.1",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.18",
"@types/multer": "^1.3.10",
"@types/node": "^12.7.8",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^4.1.0",
"@types/uuid": "^3.4.6",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.3.1",
"chai": "^4.2.0",
"concurrently": "^5.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.7.2",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.6.3"
},
"_moduleAliases": {
"@src": "dist",
"@test": "test",
"@routes": "dist/routes",
"@controllers": "dist/controllers",
"@models": "dist/models"
}
}