-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.44 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
61
62
63
64
65
{
"name": "nsc-events-fullstack",
"version": "2.0.0",
"private": true,
"workspaces": [
"nsc-events-nextjs",
"nsc-events-nestjs"
],
"scripts": {
"prepare": "node -e \"try{require('husky')}catch(e){if(e.code!=='MODULE_NOT_FOUND')throw e}\"",
"test:frontend": "npm run test --workspace=nsc-events-nextjs",
"dev:frontend": "npm run dev --workspace=nsc-events-nextjs",
"build:frontend": "npm run build --workspace=nsc-events-nextjs",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build:backend": "npm run build --workspace=nsc-events-nestjs",
"test:backend": "npm run test --workspace=nsc-events-nestjs",
"build": "npm run build:backend && npm run build:frontend",
"lint:backend": "npm run lint --workspace=nsc-events-nestjs",
"dev:backend": "npm run start:dev --workspace=nsc-events-nestjs",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:staged": "lint-staged",
"compile": "npm run compile --workspace=nsc-events-nestjs && npm run compile --workspace=nsc-events-nextjs",
"test": "npm run test:backend && npm run test:frontend",
"test:coverage": "npm run test:cov --workspace=nsc-events-nestjs && npm run test:coverage --workspace=nsc-events-nextjs",
"lint:frontend": "npm run lint --workspace=nsc-events-nextjs",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:codegen": "playwright codegen http://localhost",
"test:all": "npm run test && npm run test:e2e",
"docker": "docker compose down --rmi all --volumes --remove-orphans && docker compose build --no-cache && docker compose up -d",
"docker:watch": "npm run docker && docker compose logs -f nestjs"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"aws-sdk-client-mock": "^4.1.0",
"axios": "^1.13.2",
"concurrently": "^8.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.6"
},
"engines": {
"node": "22.x"
},
"dependencies": {
"path-to-regexp": "0.1.12"
},
"overrides": {
"form-data": "4.0.4",
"safer-buffer": "2.1.2",
"jsdom": "27.2.0",
"typescript": "5.6.3",
"@nestjs/swagger": {
"path-to-regexp": "6.2.1"
},
"swagger-ui-express": "4.6.3",
"tmp": "^0.2.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.1.1"
},
"date-fns": "2.30.0"
}
}