-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.28 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
{
"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:cy": "webpack --mode production",
"serve:cy": "serve -s build",
"cy:run": "cypress run"
},
"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",
"@tanstack/eslint-plugin-query": "5.62.1",
"@types/chrome": "0.0.287",
"@types/jest": "29.5.14",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"@types/use-analytics": "0.0.3",
"@types/uuid": "10.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"cypress": "13.16.1",
"dotenv": "16.4.7",
"eslint": "9.17.0",
"eslint-import-resolver-alias": "1.1.2",
"fake-indexeddb": "6.0.0",
"globals": "15.13.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.1",
"typescript": "5.7.2",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"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.62.7",
"@tanstack/react-router": "1.88.0",
"analytics": "0.8.16",
"change-case": "5.4.4",
"comlink": "4.4.2",
"decoders": "2.5.0",
"dexie": "4.0.10",
"http-method-enum": "1.0.0",
"modern-normalize": "3.0.1",
"react": "18.3.1",
"react-aria": "3.36.0",
"react-aria-components": "1.5.0",
"react-dom": "18.3.1",
"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.13",
"ts-key-enum": "2.0.13",
"use-analytics": "1.1.0",
"usehooks-ts": "3.1.0",
"uuid": "11.0.3"
}
}