-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.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
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
{
"name": "trivia-new-76c5",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode -- @remix-run/dev:remix dev",
"dev-express": "remix build && run-p \"dev:*\"",
"dev-express:scss": "npm run generate:scss -- --watch",
"dev-express:tailwind": "npm run generate:tailwind -- --watch",
"dev-express:node": "cross-env NODE_ENV=development nodemon --require dotenv/config ./server.js --watch ./server.js",
"dev-express:remix": "remix watch",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "cross-env NODE_ENV=production PORT=8080 node ./server.js",
"validate": "run-p \"test -- --run\" lint test:e2e:run",
"open-studio": "npx prisma studio"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@google-cloud/recaptcha-enterprise": "^5.1.0",
"@prisma/client": "^4.5.0",
"@remix-run/express": "^1.19.0",
"@remix-run/node": "^1.7.6",
"@remix-run/react": "^1.7.6",
"@remix-run/serve": "^1.7.6",
"@remix-run/server-runtime": "^1.7.6",
"@tailwindcss/typography": "^0.5.8",
"@web3modal/ethereum": "^2.7.1",
"@web3modal/react": "^2.7.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"daisyui": "^2.41.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"is-ip": "^5.0.1",
"isbot": "^3.6.3",
"mixpanel": "^0.18.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^4.4.0",
"tiny-invariant": "^1.3.1",
"wagmi": "^0.12.16"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@mermaid-js/mermaid-cli": "^10.4.0",
"@remix-run/dev": "^1.7.6",
"@remix-run/eslint-config": "^1.7.6",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.24.5",
"autoprefixer": "^10.4.13",
"binode": "^1.0.5",
"c8": "^7.12.0",
"concurrently": "^8.2.0",
"cookie": "^0.5.0",
"cypress": "^10.11.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"happy-dom": "^6.0.4",
"msw": "^0.47.4",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.5.0",
"prisma-erd-generator": "^1.11.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.2.2",
"tsconfig-paths": "^4.1.0",
"vite": "^3.2.2",
"vite-tsconfig-paths": "^3.5.2",
"vitest": "^0.24.5"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}