This repository was archived by the owner on Jun 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
{
"name": "echo",
"repository": "git@github.com:echonft/echo.git",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"private": true,
"lint-staged": {
"*.(ts|tsx)": [
"eslint --quiet --fix",
"prettier -u --no-error-on-unmatched-pattern --write"
]
},
"scripts": {
"bot": "scripts/bot/action.sh",
"dep": "scripts/deploy/deploy.sh",
"dev:bot": "scripts/bot/dev.sh",
"dev:frontend": "scripts/frontend/dev.sh",
"firestore": "scripts/firestore/action.sh",
"frontend": "scripts/frontend/action.sh",
"lint": "turbo lint",
"lint-staged": "NODE_OPTIONS='--max_old_space_size=8192' lint-staged",
"modules:check": "turbo modules:check --continue",
"modules:remove": "turbo modules:remove; rimraf node_modules pnpm-lock.yaml",
"modules:update": "ncu -u; turbo modules:update",
"modules:update-minor": "ncu -u --target=minor; turbo modules:update-minor",
"prettier": "turbo prettier",
"storybook": "turbo dev --filter=@echo/storybook --filter=@echo/ui",
"test": "turbo test",
"tsc": "turbo tsc",
"vercel:actions": "scripts/vercel/action.sh"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.16.0",
"@next/eslint-plugin-next": "15.1.0",
"@types/eslint__eslintrc": "2.1.2",
"@types/eslint__js": "8.42.3",
"depcheck": "1.4.7",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.3.3",
"eslint-config-google": "0.14.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-storybook": "0.11.1",
"firebase-tools": "13.28.0",
"globals": "15.13.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"next": "14.2.20",
"npm-check-updates": "17.1.11",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"turbo": "2.3.3",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"vercel": "39.2.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": "20.x"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}