-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.16 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": "person_shopper_api",
"version": "1.0.0",
"description": "Personal Shopper Api Server",
"main": "index.js",
"scripts": {
"deploy": "npm run build && npm run docs && eb deploy",
"build": "tsc",
"start": "node dist/server.js",
"dev": "npm run docs && ts-node -r dotenv/config src/server.ts",
"docs": "swagger-cli bundle -t yaml -o dist/docs.yaml -r docs/swagger.yaml",
"test": "mocha -r ts-node/register ./test/**/*.test.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PersonalShopperDev/ApiServer.git"
},
"keywords": [],
"author": "Personal Shopper",
"license": "ISC",
"bugs": {
"url": "https://github.com/PersonalShopperDev/ApiServer/issues"
},
"homepage": "https://github.com/PersonalShopperDev/ApiServer#readme",
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"sinon": "^10.0.0",
"swagger-cli": "^4.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"aws-sdk": "^2.922.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.10.1",
"express-winston": "^4.1.0",
"http": "*",
"http-errors": "^1.8.0",
"inversify": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"redoc-express": "^1.0.0",
"reflect-metadata": "^0.1.13",
"s3-streamlogger": "^1.7.0",
"socket.io": "^4.1.2",
"ts-transformer-keys": "^0.4.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
}
}