-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.96 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
123
124
125
126
127
128
{
"name": "fredagslunchen",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"dev": "run-p dev:*",
"email": "email dev -s",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "remix-serve ./build/index.js",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve ./build/index.js",
"test": "vitest",
"typecheck": "tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck"
},
"prettier": {
"semi": false,
"printWidth": 110
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@conform-to/react": "^0.9.0",
"@conform-to/zod": "^0.9.0",
"@faker-js/faker": "^8.0.2",
"@nivo/core": "^0.80.0",
"@nivo/line": "^0.80.0",
"@prisma/client": "^4.16.1",
"@radix-ui/colors": "^1.0.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-hover-card": "^1.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-aria/button": "^3.7.2",
"@react-aria/combobox": "^3.6.1",
"@react-aria/focus": "^3.12.1",
"@react-aria/i18n": "^3.7.2",
"@react-aria/listbox": "^3.9.1",
"@react-aria/overlays": "^3.14.1",
"@react-aria/ssr": "^3.6.0",
"@react-email/components": "^0.0.7",
"@react-stately/collections": "^3.8.0",
"@react-stately/combobox": "^3.5.1",
"@react-stately/data": "^3.9.2",
"@react-stately/list": "^3.8.1",
"@remix-run/node": "^2.0.1",
"@remix-run/react": "^2.0.1",
"@remix-run/serve": "^2.0.1",
"@remix-run/server-runtime": "^2.0.1",
"@sendgrid/mail": "^7.7.0",
"@turf/turf": "^6.5.0",
"@types/mapbox-gl": "^2.7.11",
"bcryptjs": "^2.4.3",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"mapbox-gl": "^2.15.0",
"nanoid": "^4.0.2",
"node-cache": "^5.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "1.9.5",
"react-map-gl": "^7.0.25",
"remix-auth": "^3.6.0",
"remix-auth-form": "^1.4.0",
"remix-auth-google": "^1.3.0",
"remix-auth-oauth2": "github:anton-g/remix-auth-oauth2",
"resend": "^1.1.0",
"styled-components": "^5.3.11",
"tiny-invariant": "^1.3.1",
"uuid": "^9.0.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@remix-run/dev": "^2.0.1",
"@remix-run/eslint-config": "^2.0.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.2.2",
"@types/eslint": "^8.40.2",
"@types/node": "^18.11.19",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.6",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"autoprefixer": "^10.4.14",
"binode": "^1.0.5",
"c8": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^9.20.3",
"msw": "^1.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^3.0.3",
"prisma": "^4.16.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}