-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "xeptogenclassapi",
"version": "1.0.0",
"description": "REST API for class and module access management",
"main": "build/src/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node build/src/server.js"
},
"author": "RushanNana",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.10",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.3",
"@types/validator": "^13.7.0",
"concurrently": "^6.4.0",
"kill-port": "^1.6.1",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"typescript": "^4.5.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"generate-password": "^1.7.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.11.0",
"sequelize-typescript": "^2.1.1",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.14.1",
"uuid": "^8.3.2"
}
}