forked from eyecuelab/internship-march-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.38 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 4.38 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "gogoyonder",
"private": true,
"description": "",
"license": "GPL-3.0-or-later",
"sideEffects": false,
"website": "https://gogoyonder.fly.dev",
"repository": "https://github.com/eyecuelab/internship-march-2022.git",
"contributors": [
{
"name": "Aaron Ross",
"email": "aaron.ross@eyecuelab.com",
"url": "https://eyecuelab.com"
},
{
"name": "Jeremy Banka",
"email": "jeremy.banka@eyecuelab.com",
"url": "https://eyecuelab.com"
},
{
"name": "Jacob Wilson",
"email": "jacobleeeugenewilson@gmail.com",
"url": "https://eyecuelab.com"
},
{
"name": "Jeff Lai",
"email": "pjefflai@gmail.com",
"url": "https://eyecuelab.com"
},
{
"name": "Kim Brannian",
"email": "brannian@gmail.com",
"url": "https://eyecuelab.com"
},
{
"name": "Ella Tanttu",
"email": "ellajtanttu@gmail.com",
"url": "https://eyecuelab.com"
},
{
"name": "Elly Maimon",
"email": "eliran.maimon@eyecuelab.com",
"url": "https://eyecuelab.com"
},
{
"name": "Jeff Lai",
"email": "pjefflai@gmail.com",
"url": "https://eyecuelab.com"
}
],
"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 --require ./mocks -- @remix-run/dev:remix dev",
"format": "eslint --cache --cache-location ./node_modules/.cache/eslint . --fix",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"postinstall": "remix setup node",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma migrate dev && prisma db seed",
"start": "remix-serve build",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "3.11.1",
"@reach/combobox": "^0.17.0",
"@react-google-maps/api": "^2.10.1",
"@remix-run/react": "1.3.4",
"@remix-run/serve": "1.3.4",
"bcryptjs": "2.4.3",
"moment": "^2.29.3",
"node-navigator": "^1.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"remix": "1.3.4",
"styled-components": "^5.3.5",
"tiny-invariant": "1.2.0",
"use-places-autocomplete": "^2.0.0"
},
"devDependencies": {
"@eyecuelab/eslint-config-react": "1.0.1",
"@faker-js/faker": "6.1.1",
"@remix-run/dev": "1.3.4",
"@remix-run/eslint-config": "1.3.4",
"@svgr/cli": "^6.2.1",
"@testing-library/cypress": "8.0.2",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/bcryptjs": "2.4.2",
"@types/eslint": "8.4.1",
"@types/node": "^17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react": "1.3.0",
"binode": "1.0.5",
"c8": "7.11.0",
"cross-env": "7.0.3",
"cypress": "9.5.3",
"esbuild": "^0.14.36",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"happy-dom": "2.55.0",
"msw": "0.39.2",
"npm-run-all": "4.1.5",
"prettier": "2.6.1",
"prettier-plugin-tailwindcss": "0.1.8",
"prisma": "3.11.1",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.0.23",
"ts-node": "^10.7.0",
"tsconfig-paths": "3.14.1",
"typescript": "^4.6.3",
"vite-tsconfig-paths": "3.4.1",
"vitest": "0.8.2"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"rules": {
"linebreak-style": 0
}
}