-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.8 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
{
"name": "matador",
"description": "A little Remix.run route for BullMQ queues",
"scripts": {
"start": "cross-env NODE_ENV=production node ./build/index.js",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"build": "npm run build:css && npm run build:remix",
"build:remix": "cross-env NODE_ENV=production remix build",
"build:css": "tailwindcss -o ./app/styles/tailwind.css",
"dev": "concurrently -p \"[{name}]\" -n \"tailwind,remix\" -c \"yellow.bold,red.bold\" \"npm:dev:css\" \"npm:dev:remix\"",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:css": "tailwindcss -o ./app/styles/tailwind.css --watch",
"dev:docker": "docker compose up -d",
"dev:docker:stop": "docker compose down",
"format": "prettier --write .",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "concurrently -p \"[{name}]\" -n \"test,lint,typecheck,test:e2e:run\" \"npm:test -- --run\" \"npm:lint\" \"npm:typecheck\" npm:test:e2e:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullndr/Matador.git"
},
"keywords": [
"bullmq",
"remix.run",
"matador"
],
"author": "Andrea <[email protected]>",
"bugs": {
"url": "https://github.com/nullndr/Matador/issues"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"homepage": "https://github.com/nullndr/Matador#readme",
"dependencies": {
"@mantine/core": "5.7.1",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"bullmq": "*",
"ioredis": "*",
"react": "*",
"react-dom": "*",
"react-icons": "4.6.0"
},
"devDependencies": {
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@testing-library/dom": "8.14.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "*",
"@types/react-dom": "*",
"@vitejs/plugin-react": "2.2.0",
"binode": "1.0.5",
"concurrently": "7.2.2",
"cross-env": "7.0.3",
"eslint": "8.27.0",
"cypress": "11.0.1",
"eslint-config-prettier": "8.5.0",
"happy-dom": "6.0.2",
"msw": "0.48.1",
"postcss": "8.4.14",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.11",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.2.4",
"typescript": "4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.1"
}
}