-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
{
"name": "chatpot-auth-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "CONFIG_FILE=$HOME/chatpot-auth-conf.json TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/app",
"lint": "tslint -t stylish --project ./tsconfig.json",
"test": "jest -c jest.config.js",
"test:coverage": "jest -c jest.config.js --coverage",
"clean": "rimraf coverage dist",
"build": "npm run clean && npm run lint && npm run test && tsc -p ./tsconfig.build.json && npm run copy-swagger && npm run copy-ejs",
"copy-swagger": "mkdir -p dist/swagger && cp src/swagger/*.yaml dist/swagger/",
"copy-ejs": "mkdir -p dist/pages && cp src/pages/*.ejs dist/pages/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JayJayDee/Chatpot-Auth-Server.git"
},
"author": "JayJayDee",
"license": "ISC",
"bugs": {
"url": "https://github.com/JayJayDee/Chatpot-Auth-Server/issues"
},
"homepage": "https://github.com/JayJayDee/Chatpot-Auth-Server#readme",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/country-list": "^2.1.0",
"@types/ejs": "^2.6.3",
"@types/express": "^4.16.0",
"@types/geoip-lite": "^1.1.29",
"@types/ip": "^1.1.0",
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.118",
"@types/moment": "^2.13.0",
"@types/multer": "^1.3.7",
"@types/mysql": "^2.15.5",
"@types/node": "^10.12.11",
"@types/nodemailer": "^6.1.0",
"@types/redis": "^2.8.10",
"@types/request-promise-native": "^1.0.15",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "^3.0.0",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.12.0",
"typescript": "^3.2.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"country-list": "^2.1.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"geoip-lite": "^1.3.7",
"ip": "^1.1.5",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"multer": "^1.4.1",
"mysql": "^2.16.0",
"nodemailer": "^6.1.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"smart-factory": "^1.0.12",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2"
}
}