-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
55
56
57
58
59
60
{
"name": "barberapp-backend",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"dev": "cross-env NODE_ENV=development nodemon src/server.ts",
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/server.js"
},
"jest": {
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Test Report",
"includeFailureMsg": true,
"includeConsoleLog": true,
"outputPath": "./test-report.html"
}
]
],
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/src/tests/setup.ts"
]
},
"dependencies": {
"barberapp-root": "file:..",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"libphonenumber-js": "^1.12.8",
"mysql2": "^3.14.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.22",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.12",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/supertest": "^6.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"jest-html-reporter": "^4.1.0",
"nodemon": "^2.0.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}