-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.48 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
{
"name": "typescript-express-rest-api",
"version": "1.0.0",
"main": "./build/index.js",
"keywords": [
"typescript",
"node",
"nodejs",
"rest",
"restfull",
"api"
],
"description": "This template will help you to build your own Node.js Express Mongodb API using TypeScript.",
"license": "MIT",
"scripts": {
"build": "tsc --skipLibCheck",
"start": "tsc --skipLibCheck && node ./build/index.js",
"dev": "nodemon",
"test": "NODE_ENV=test mocha -r ts-node/register test/index.js --exit",
"lint": "tslint -p tsconfig.json --fix"
},
"files": [
"src"
],
"dependencies": {
"@types/amqplib": "^0.5.17",
"@types/mysql": "^2.15.15",
"@types/uuid": "^8.3.0",
"amqplib": "^0.6.0",
"axios": "^0.20.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"canvas": "^2.6.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"discord-webhook-node": "^1.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"http-status-codes": "^1.3.2",
"influx": "^5.7.0",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"lodash.isequal": "^4.5.0",
"mcping-js": "^1.5.0",
"merge-images": "^2.0.0",
"module-alias": "^2.2.2",
"mongoose": "^5.7.7",
"mysql": "^2.18.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"util": "^0.11.1",
"uuid": "^8.3.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.4",
"@types/compression": "^0.0.36",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.6.3",
"@types/express": "^4.17.1",
"@types/hapi__joi": "^15.0.4",
"@types/helmet": "^0.0.42",
"@types/jsonwebtoken": "^8.3.4",
"@types/lodash": "^4.14.162",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.5.23",
"@types/node": "^10.17.0",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "^0.0.2",
"@types/swagger-ui-express": "^3.0.1",
"chai": "^4.2.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"source-map-loader": "^0.2.4",
"supertest": "^4.0.2",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"ts-node": "^6.2.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.3"
}
}