forked from reactiflux/mod-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.23 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "jobs-bot",
"description": "Package root for Reactiflux's jobs bot",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"start": "npm run start:migrate; npm run start:bot",
"test": "vitest",
"build": "run-s build:*",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write .",
"validate": "run-p \"test -- run\" lint typecheck test:e2e:run",
"kysely": "kysely",
"": "",
"start:migrate": "kysely migrate:list; kysely migrate:latest",
"start:bot": "node build/index.js",
"prepare": "husky || true",
"typecheck": "tsc -b && tsc -b cypress",
"build:css": "npm run generate:css --minify",
"build:remix": "remix build",
"dev:init": "run-s start:migrate kysely:seed generate:db-types",
"dev:css": "npm run generate:css --watch",
"dev:express": "nodemon build/index.js",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix watch",
"kysely:seed": "kysely seed:run",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"generate:db-types": "kysely-codegen --log-level debug --dialect sqlite --out-file ./app/db.d.ts",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"cypress open\"",
"test:e2e:run": "exit; echo 'these tests are disabled because theyre broken'; cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"cypress run\"",
"pretest:e2e:run": "exit; npm run build"
},
"license": "AGPL-3.0",
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"@remix-run/express": "^1.5.1",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.4.1",
"@remix-run/serve": "^1.4.1",
"@remix-run/server-runtime": "^1.4.1",
"@sentry/node": "^7.5.1",
"@sentry/tracing": "^7.5.1",
"@types/lodash": "^4.14.182",
"better-sqlite3": "^9.5.0",
"date-fns": "^2.27.0",
"discord.js": "^14.8.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"kysely": "^0.27.4",
"kysely-ctl": "^0.9.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lru-cache": "^10.2.2",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"pretty-bytes": "^5.6.0",
"query-string": "^6.14.1",
"reacord": "^0.5.2",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"remix": "^1.7.2",
"simple-oauth2": "^4.3.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@faker-js/faker": "^6.3.1",
"@remix-run/dev": "^1.4.1",
"@remix-run/eslint-config": "^1.4.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.0.4",
"@types/bcryptjs": "^2.4.2",
"@types/better-sqlite3": "^7.5.0",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.45",
"@types/node-cron": "^3.0.1",
"@types/node-fetch": "^2.5.4",
"@types/open-graph-scraper": "^4.8.1",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/simple-oauth2": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/coverage-c8": "^0.23.4",
"autoprefixer": "^10.4.4",
"binode": "^1.0.5",
"c8": "^7.11.0",
"cross-env": "^7.0.3",
"cypress": "^9.7.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^2.55.0",
"husky": "~9.1.0",
"kysely-codegen": "^0.15.0",
"lint-staged": "~15.2.0",
"msw": "^0.47.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3",
"vite": "^2.9.15",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.23.4"
},
"prettier": {
"trailingComma": "all"
}
}