-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "Motirõ Study System",
"version": "2.1.0",
"description": "Squad Challenge - Motirõ Study System",
"main": "index.js",
"scripts": {
"start": "node dist",
"build": "tsc --project tsconfig.build.json && tsc-alias",
"dev": "nodemon -L -w src -x 'npm run build && npm start' -e 'ts json'",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "Motirõ",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.5.2",
"swagger-ui-express": "^5.0.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.11.1",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
}
}