-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.2 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
{
"name": "@show/source",
"version": "0.0.1",
"private": true,
"scripts": {
"__REPO_RELATED__": "____________________",
"prepare": "husky install",
"loc": "pnpm --filter infra loc",
"update": "pnpm update --latest -r",
"clean": "pnpm recursive run clean",
"clean:mod": "pnpm recursive run clean:mods && rm -rf node_modules",
"reset": "pnpm clean && pnpm clean:mod && pnpm i",
"__FORMAT_RELATED__": "__________________",
"format": "prettier -w \"**/*.{ts,tsx,js,jsx,html,css,svg,yml,json,md}\"",
"lint": "pnpm recursive run lint",
"__ACTION_RELATED__": "__________________",
"dev": "pnpm --filter web dev",
"build:ci": "pnpm --filter web build:ci",
"build:prod": "pnpm --filter web build:prod",
"start": "pnpm --filter web start",
"__TEST_RELATED__": "__________________",
"coverage": "find . -name \"lcov.info\" -exec cat {} + > \"lcov.combo.info\"",
"test": "pnpm recursive run test",
"e2e": "pnpm recursive run e2e",
"e2e:show": "pnpm recursive run e2e:show",
"__DATABASE_RELATED__": "",
"db:gen": "pnpm --filter web db:gen",
"db:sync": "pnpm --filter web db:sync",
"db:seed": "pnpm --filter web db:seed",
"db:show": "pnpm --filter web db:show"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/crypto-js": "^4.2.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.21.5",
"esbuild-jest": "^0.5.0",
"husky": "^9.1.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"react-hooks-testing-library": "^0.6.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.1.4"
}