-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "nodeProjectTemplate",
"version": "1.0.0",
"main": "build/src/index.js",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build1": "tsc && node dist"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/slack-node": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.1157.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"slack-node": "^0.1.8",
"ts-jenum": "^2.2.2",
"tsoa": "^4.1.0",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.7.1"
}
}