-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.38 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
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
{
"name": "psychologist-app",
"version": "1.0.0",
"main": "app.js",
"repository": "[email protected]:DanielDDHM/psychologist-app.git",
"author": "DanielDDHM <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"prod": "node build/app.js",
"dev": "cross-env NODE_ENV=DEV ts-node-dev --exit-child --transpile-only --ignore-watch node_modules src/app.ts",
"lint": "eslint --ext js,ts src",
"lint:fix": "eslint --ext js,ts src --fix",
"docker:up": "docker-compose -f docker-compose.test.yml up -d",
"docker:down": "docker-compose down",
"prepare": "husky install",
"prettier": "prettier --write .",
"test": "cross-env DATABASE_URL_TEST='mongodb+srv://admin:[email protected]/psy-app?retryWrites=true&w=majority' jest -i --verbose"
},
"dependencies": {
"aws-sdk": "^2.1209.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"blob": "^0.1.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"docker": "^0.2.14",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"fs": "^0.0.1-security",
"get-current-line": "^6.6.0",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.5.2",
"rimraf": "^3.0.2",
"run-func": "^3.0.0",
"socket.io": "^4.5.1",
"socketio": "^1.0.0",
"swagger": "^0.7.5",
"swagger-ui-express": "^4.4.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.8.2",
"ts-node-dev": "^2.0.0",
"uuid": "^8.3.2",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/eslint": "^8.4.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.0.3",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
}