-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.6 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.6 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
73
74
75
76
77
78
{
"name": "@project/root",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"clean": "rimraf packages/*/dist && yarn build",
"build": "tsc --build",
"build:references": "node ./tools/typescript",
"build:swagger": "yarn workspace @project/www run build:swagger",
"build:lambda": "yarn workspace @project/lambda run build",
"deploy:lambda": "yarn workspace @project/lambda run build:deploy",
"start:www": "yarn workspace @project/www run start",
"start:lambda": "concurrently \"yarn start:docker\" \"yarn workspace @project/lambda run start\" --names docker,esbuild -c green,blue",
"start:docker": "dotenv-flow docker compose up -- -d",
"stop:docker": "docker compose down",
"test": "vitest run",
"test:watch": "vitest run",
"test:lambda": "yarn workspace @project/lambda run test",
"test:controllers": "yarn workspace @project/controllers run test",
"test:domain": "yarn workspace @project/domain run test",
"test:infra": "yarn workspace @project/infra run test",
"test:www": "yarn workspace @project/www run test",
"test:commands": "yarn workspace @project/commands run test",
"test:e2e": "yarn workspace @project/lambda run test:e2e",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "is-ci || husky install"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"dotenv-flow": "^4.1.0",
"dotenv-flow-cli": "^1.1.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"@swc/core": "1.7.42",
"@tsed/eslint-plugin": "1.1.11",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.4",
"@types/supertest": "^6.0.2",
"@types/url-parse": "1.4.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "8.34.0",
"@typescript-eslint/parser": "8.34.0",
"@vitest/coverage-v8": "3.2.3",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.4.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-workspaces": "0.10.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"tslib": "^2.8.0",
"tsup": "8.5.0",
"typescript": "^5.6.3",
"unplugin-swc": "^1.5.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.3"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "yarn",
"runtime": "node"
},
"workspaces": [
"packages/*",
"tools/*"
],
"packageManager": "yarn@4.5.1"
}