-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "playbeat",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "npm run build && concurrently \"npm run api\" \"npm run ws\"",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "docker compose up -d && sleep 1 && npx prisma migrate dev && npm run jest",
"test:after": "docker compose down",
"build": "npx tsc",
"prepare": "husky",
"jest": "node --experimental-vm-modules node_modules/.bin/jest --run-in-band",
"api": "node dist/server.js",
"ws": "node dist/ws/index.js",
"test:lista": "npm run build && npm run jest -- --testPathPattern=lista",
"test:usuario": "npm run jest -- --testPathPattern=usuario"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.10.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-jwt": "^8.4.1",
"google-auth-library": "^9.7.0",
"http-status": "^1.7.4",
"mediaserver": "^0.1.1",
"multer": "^1.4.5-lts.1",
"sharp": "^0.33.2",
"socket.io": "^4.7.5",
"swagger-jsdoc": "5.0.1",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.3",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.24",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth": "^1.0.45",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.6.2",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write"
]
}
}