-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.52 KB
/
package.json
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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tiny-recipe-box",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"clean": "rm -rf build/*",
"lint": "npx eslint",
"lint:ci": "npx eslint --quiet",
"prettier": "prettier . --write",
"prettier:ci": "prettier . --check",
"start": "webpack serve --mode development",
"test": "jest",
"typecheck": "tsc --noEmit",
"build:e2e": "webpack --mode production",
"serve:e2e": "serve -s build",
"playwright": "npx playwright test --ui"
},
"devDependencies": {
"@anthony-j-castro/eslint-config": "github:anthony-j-castro/eslint-config#semver:2.1.1",
"@anthony-j-castro/prettier-config": "github:anthony-j-castro/prettier-config#semver:1.0.0",
"@playwright/test": "1.49.1",
"@tanstack/eslint-plugin-query": "5.65.0",
"@types/chrome": "0.0.299",
"@types/jest": "29.5.14",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/use-analytics": "0.0.3",
"@types/uuid": "10.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"dotenv": "16.4.7",
"eslint": "9.19.0",
"fake-indexeddb": "6.0.0",
"globals": "15.14.0",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"prettier": "3.4.2",
"serve": "14.2.4",
"style-loader": "4.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"dependencies": {
"@analytics/google-analytics": "1.1.0",
"@ariakit/react": "0.4.15",
"@rollbar/react": "0.11.2",
"@tanstack/react-query": "5.65.0",
"@tanstack/react-router": "1.97.24",
"analytics": "0.8.16",
"change-case": "5.4.4",
"comlink": "4.4.2",
"decoders": "2.5.0",
"dexie": "4.0.11",
"http-method-enum": "1.0.0",
"modern-normalize": "3.0.1",
"react": "19.0.0",
"react-aria": "3.37.0",
"react-aria-components": "1.6.0",
"react-dom": "19.0.0",
"react-hotkeys-hook": "4.6.1",
"react-screen-wake-lock": "3.0.2",
"rollbar": "2.26.4",
"status-code-enum": "1.0.0",
"styled-components": "6.1.14",
"ts-key-enum": "2.0.13",
"use-analytics": "1.1.0",
"usehooks-ts": "3.1.0",
"uuid": "11.0.5"
},
"overrides": {
"@rollbar/react": {
"react": "$react"
},
"react-screen-wake-lock": {
"react": "$react"
},
"usehooks-ts": {
"react": "$react"
}
}
}