-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 3.15 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
{
"name": "remix-discord-bot",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"build:bot": "node ./scripts/build-bot.js",
"build:info": "node ./scripts/generate-build-info.js",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks --require ./bot -- @remix-run/dev:remix dev",
"play:bot": "nodemon ./bot/src/playground.ts",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "cp bot/src/playground.example.ts bot/src/playground.ts && prisma generate && prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production binode --require ./bot -- @remix-run/serve:remix-serve build",
"start:mocks": "binode --require ./mocks --require ./bot -- @remix-run/serve:remix-serve build",
"test": "vitest",
"typecheck": "tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/bot/dist"
],
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"@prisma/client": "^3.15.0",
"@remix-run/node": "^1.6.1",
"@remix-run/react": "^1.6.1",
"@remix-run/serve": "^1.6.1",
"@remix-run/server-runtime": "^1.6.1",
"bcryptjs": "^2.4.3",
"binode": "^1.0.5",
"cross-env": "^7.0.3",
"discord-api-types": "^0.37.14",
"discord.js": "^14.6.0",
"dotenv": "^16.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"set-interval-async": "^2.0.3",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@remix-run/dev": "^1.6.1",
"@remix-run/eslint-config": "^1.6.1",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.2.0",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.3",
"@types/node": "^17.0.41",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/set-interval-async": "^1.0.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"c8": "^7.11.3",
"chokidar": "^3.5.3",
"esbuild": "^0.14.47",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"happy-dom": "^5.2.0",
"msw": "^0.42.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"prisma": "^3.15.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.0",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.3",
"vite": "^2.9.10",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.14.2"
},
"engines": {
"node": "16"
},
"prisma": {
"seed": "node --require tsconfig-paths/register prisma/seed.js"
}
}