-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
package.json
File metadata and controls
77 lines (77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "crossword-app",
"version": "1.0.0",
"author": "Andrew Hyndman <ajhyndman@hotmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:ajhyndman/crossword-app.git"
},
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.10.3",
"scripts": {
"build": "run-s 'build:*'",
"build:remix": "remix build",
"build:worker": "remix-pwa build",
"dev": "run-p 'dev:*'",
"dev:remix": "remix dev",
"dev:worker": "remix-pwa dev",
"serve": "remix-serve dist/index.js",
"serve:local": "dotenv remix-serve dist/index.js",
"typecheck": "tsc",
"lint": "eslint ."
},
"dependencies": {
"@ajhyndman/puz": "^1.0.1",
"@remix-pwa/cache": "^2.0.12",
"@remix-pwa/strategy": "^2.1.9",
"@remix-pwa/sw": "^2.1.12",
"@remix-run/css-bundle": "^2.1.0",
"@remix-run/node": "^2.1.0",
"@remix-run/react": "^2.1.0",
"@remix-run/serve": "^2.1.0",
"@types/uuid": "^9.0.6",
"classnames": "^2.3.2",
"date-fns": "^4.1.0",
"dotenv": "^16.3.1",
"isbot": "^3.7.0",
"kafkajs": "^2.2.4",
"lodash.memoize": "^4.1.2",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^7.1.0",
"reset-css": "^5.0.2",
"ua-parser-js": "^1.0.37",
"uuid": "^9.0.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@remix-pwa/dev": "2.0.31",
"@remix-pwa/worker-runtime": "^2.0.8",
"@remix-run/dev": "^2.1.0",
"@types/lodash.memoize": "^4.1.9",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.3.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"remix-pwa": "^3.0.19",
"typescript": "^5.2.2"
}
}