-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.12 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.12 KB
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
99
100
101
{
"name": "eidcmp-api-gateway",
"version": "1.0.0",
"description": "API gateway to control dca",
"main": "./src/index.ts",
"scripts": {
"start": "npm run serve",
"serve": "webpack --watch --env mode=development --config webpack.config.ts",
"dev": "webpack --watch --env mode=development --config webpack.config.ts",
"clean:dev": "rimraf build",
"clean:prod": "rimraf dist",
"build": "webpack --mode production --config webpack.config.ts",
"development": "nodemon build/index.js --watch build",
"prod": "nodemon dist/index.js --watch dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": "20.x"
},
"files": [
"dist/**/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"12factor-config": "^2.0.0",
"@sendgrid/mail": "^8.1.3",
"@types/body-parser": "^1.19.2",
"@types/passport": "^1.0.12",
"@types/qrcode": "^1.5.5",
"bcryptjs": "^2.4.3",
"big.js": "^6.2.1",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"csv-parse": "^5.5.5",
"csv-writer": "^1.6.0",
"debug": "^4.3.4",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.4.16",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-google-oidc": "^0.1.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"qrcode": "^1.5.3",
"socket.io": "^4.8.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.4.2",
"@types/webpack": "^5.28.1",
"@types/webpack-node-externals": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^9.1.3",
"dotenv": "^16.3.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.1"
}
}