-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.21 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": "supertrue",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build --bundle",
"dev": "run-p dev:*",
"dev:server": "cross-env NODE_ENV=development node --inspect --require ./node_modules/dotenv/config ./build/server.js",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint-fix": "eslint --cache --cache-location ./node_modules/.cache/eslint . --fix",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"test": "vitest",
"typecheck": "tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck",
"prepare": "husky install",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.94",
"@mui/material": "^5.10.0",
"@rainbow-me/rainbowkit": "^0.4.5",
"@remix-run/express": "^1.6.5",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/server-runtime": "^1.6.5",
"@sentry/remix": "^7.10.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"ethers": "^5.6.9",
"express": "^4.18.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"humanize-duration": "^3.27.2",
"isbot": "^3.5.0",
"lorem-ipsum": "^2.0.8",
"magic-sdk": "^9.0.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-graphql": "^0.2.1",
"tiny-invariant": "^1.2.0",
"wagmi": "^0.6.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.15.0",
"@graphql-codegen/client-preset": "^1.2.1",
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.4.5",
"@types/express": "^4.17.13",
"@types/humanize-duration": "^3.27.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"autoprefixer": "^10.4.7",
"c8": "^7.11.3",
"dotenv": "^16.0.1",
"esbuild": "^0.14.49",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^6.0.3",
"husky": "^8.0.1",
"msw": "^0.44.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.9.3",
"vite": "^3.0.0",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.18.0"
},
"engines": {
"node": ">=16"
}
}