-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.82 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.82 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
{
"name": "first-application-3250",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/tailwind.css",
"build:remix": "remix build",
"dev": "cls & run-p dev:*",
"start:dev": "clear & run-p dev:*",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/tailwind.css",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && 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 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"lint:staged": "yarn format & eslint --fix --ext .js,.jsx .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx}": [
"yarn lint",
"yarn format"
]
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "^4.3.1",
"@react-three/drei": "^9.46.4",
"@react-three/fiber": "^8.9.1",
"@remix-run/node": "^1.7.4",
"@remix-run/react": "^1.7.4",
"@remix-run/serve": "^1.7.4",
"@remix-run/server-runtime": "^1.7.4",
"bcryptjs": "^2.4.3",
"chart.js": "^3.9.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"http-status-codes": "^2.2.0",
"isbot": "^3.5.3",
"lodash": "^4.17.21",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.6.0",
"reflect-metadata": "^0.1.13",
"three": "^0.147.0",
"tiny-invariant": "^1.2.0",
"valtio": "^1.7.6"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@remix-run/dev": "^1.7.4",
"@remix-run/eslint-config": "^1.7.4",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.6",
"@types/lodash": "^4.14.188",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.4",
"autoprefixer": "^10.4.11",
"binode": "^1.0.5",
"c8": "^7.12.0",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"cypress": "^10.8.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"happy-dom": "^6.0.4",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"msw": "^0.47.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.3.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.23.4"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}