-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "support-request-system-backend",
"version": "1.0.0",
"description": "Customer Support Request System",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc",
"test": "mocha --require ts-node/register src/test/**/*.spec.ts",
"seed:roles": "ts-node src/seeds/roleSeeder.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"fast-csv": "^4.3.6",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.1",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^16.7.10",
"@types/sinon": "^10.0.16",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.4"
}
}