-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.58 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.58 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
66
67
68
69
70
71
72
{
"name": "@tiny-store/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "nx serve api",
"build": "nx build api",
"test": "nx run-many --target=test --all",
"test:unit": "nx run-many --target=test --all --exclude=*e2e*",
"test:infrastructure": "nx test shared-infrastructure",
"test:entities": "nx run-many --target=test --projects=modules-*",
"test:boundary": "nx test shared-testing --testPathPattern=module-boundary",
"test:integration": "npx jest --config tests/integration/jest.config.js --forceExit",
"test:integration:events": "nx test shared-testing --testPathPattern=event-flow",
"test:e2e": "node test-api.js",
"test:e2e:jest": "npx jest apps/api/e2e --runInBand",
"test:e2e:comprehensive": "npx jest apps/api/e2e/comprehensive.e2e.spec.ts --runInBand",
"test:e2e:standalone": "node test-api.js",
"test:e2e:api": "npx jest apps/api/e2e/api-endpoints.e2e.spec.ts --runInBand",
"test:e2e:perf": "npx jest apps/api/e2e/performance.e2e.spec.ts --runInBand",
"test:coverage": "nx run-many --target=test --all --coverage",
"test:regression": "npm run test:infrastructure && npm run test:entities && npm run test:e2e:standalone",
"test:watch": "nx test shared-domain --watch",
"verify:entities": "nx test shared-infrastructure --testPathPattern=database.config",
"lint": "nx workspace-lint && nx lint",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"bullmq": "^5.69.3",
"drizzle-orm": "^0.45.1",
"ioredis": "^5.9.3",
"next": "15.0.0",
"pg": "^8.18.0",
"postgres": "^3.4.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nx/eslint": "19.0.0",
"@nx/eslint-plugin": "19.0.0",
"@nx/jest": "19.0.0",
"@nx/js": "19.0.0",
"@nx/next": "19.0.0",
"@nx/node": "19.0.0",
"@nx/workspace": "19.0.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^29.5.12",
"@types/node": "18.16.9",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.14",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"drizzle-kit": "^0.31.9",
"eslint": "~8.57.0",
"eslint-config-next": "15.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "19.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.4.2"
}
}