-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 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
{
"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:4.0.2",
"@anthony-j-castro/prettier-config": "github:anthony-j-castro/prettier-config#semver:1.1.1",
"@playwright/test": "1.51.0",
"@tanstack/eslint-plugin-query": "5.67.2",
"@types/chrome": "0.0.309",
"@types/jest": "29.5.14",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/use-analytics": "0.0.3",
"@types/uuid": "10.0.0",
"copy-webpack-plugin": "13.0.0",
"css-loader": "7.1.2",
"dotenv": "16.4.7",
"eslint": "9.22.0",
"fake-indexeddb": "6.0.0",
"globals": "16.0.0",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"prettier": "3.5.3",
"serve": "14.2.4",
"style-loader": "4.0.0",
"ts-jest": "29.2.6",
"ts-loader": "9.5.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.8.2",
"webpack": "5.98.0",
"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.12.1",
"@tanstack/react-query": "5.67.3",
"@tanstack/react-router": "1.114.15",
"analytics": "0.8.16",
"change-case": "5.4.4",
"comlink": "4.4.2",
"decoders": "2.6.1",
"dexie": "4.0.11",
"http-method-enum": "1.0.0",
"modern-normalize": "3.0.1",
"react": "19.0.0",
"react-aria": "3.38.1",
"react-aria-components": "1.7.1",
"react-dom": "19.0.0",
"react-hotkeys-hook": "4.6.1",
"react-screen-wake-lock": "3.0.3",
"rollbar": "2.26.4",
"status-code-enum": "1.0.0",
"styled-components": "6.1.15",
"ts-key-enum": "2.0.13",
"use-analytics": "1.1.0",
"usehooks-ts": "3.1.1",
"uuid": "11.1.0"
},
"overrides": {
"react-screen-wake-lock": {
"react": "$react"
}
}
}