-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "typescript-node-express-mongodb-backend",
"version": "7.0.1",
"main": "index.ts",
"author": "HADMARINE",
"license": "MIT",
"scripts": {
"start": "npm run build && pm2 start -i 0",
"dev": "nodemon",
"build": "gulp build",
"tsc": "tsc",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"test": "yarn cross-env NODE_ENV=test jest --config ./jest.config.js --watch --testTimeout=10000",
"test-auto": "yarn cross-env NODE_ENV=test jest --config ./jest.config.js",
"d-build": "docker build . -t "
},
"dependencies": {
"@babel/runtime": "^7.16.0",
"aws-sdk": "^2.1020.0",
"chalk": "^4.1.2",
"clear-logger": "^1.0.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"deasync": "^0.1.23",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-ipfilter": "^1.2.0",
"express-quick-builder": "^3.0.7",
"express-rate-limit": "^5.5.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"pm2": "^5.1.2",
"portfinder": "^1.0.28",
"quickcert": "^1.1.2",
"socket.io": "^4.3.1",
"tunnel-ssh": "^4.1.6"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/deasync": "^0.1.2",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/express-rate-limit": "^5.1.3",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.2",
"@types/jest-expect-message": "^1.0.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.6",
"@types/node-cron": "^3.0.0",
"@types/supertest": "^2.0.11",
"@types/tunnel-ssh": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^25.2.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.3.1",
"jest-expect-message": "^1.0.2",
"jest-html-reporter": "^3.4.1",
"jest-junit": "^13.0.0",
"node-gyp": "^8.3.0",
"nodemon": "2.0.14",
"prettier": "^2.4.1",
"require-strip-json-comments": "^2.0.0",
"strip-json-comments": "^4.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-lint": "^4.5.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.4.4"
},
"packageManager": "yarn@3.1.0"
}