-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "teste-fullstack",
"version": "1.0.0",
"description": "Api in node using websocket with clean architecture and tests",
"author": {
"name": "Silvio Lucas - SLDS",
"email": "[email protected]"
},
"scripts": {
"start": "node -r dotenv/config dist/main",
"dev": "ts-node-dev --respawn --transpile-only -r dotenv/config src/main",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"lint": "eslint . ",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:unit": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"test:integration": "npm test -- --detectOpenHandles --watch -c jest.integration.config.js"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"module-alias": "^2.2.3",
"rimraf": "^5.0.1",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"@prisma/client": "^5.2.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/module-alias": "^2.0.2",
"@types/node": "^20.5.0",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.2",
"dotenv": "^16.3.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-mock-extended": "^3.0.5",
"lint-staged": "^14.0.0",
"prisma": "^5.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}