-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.8 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i tailwind.config.css -o app/styles/tailwind.css",
"db:migrate": "run-p db:migrate:*",
"db:migrate:dev": "npx prisma migrate dev",
"db:migrate:test": "dotenv -e .env.test -- npx prisma db push --accept-data-loss",
"db:deploy": "npx prisma migrate deploy",
"db:push": "npx prisma db push",
"db:reset": "rm -r prisma/data.db && npm run db:push",
"db:seed": "npx prisma db seed",
"db:studio": "npx prisma studio -p 7777 --browser none",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i tailwind.config.css -o app/styles/tailwind.css",
"format": "prettier --write .",
"generate": "plop && npm run format -- --loglevel silent",
"g": "npm run generate",
"g:route": "plop route && npm run format -- --loglevel silent",
"g:component": "plop component && npm run format -- --loglevel silent",
"g:model": "plop model && npm run format -- --loglevel silent && npm run db:push",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"new:component": "cd scripts && ./new_component.sh",
"start": "remix-serve build",
"test:unit": "dotenv -e .env.test -- vitest --dir ./app",
"test:unit:ci": "npm run test:unit -- --run",
"test:integration": "dotenv -e .env.test -- vitest --no-threads --dir ./test/routes",
"test:integration:ci": "npm run test:integration -- --run",
"test:e2e": "start-server-and-test dev http://localhost:3000 'cypress open'",
"test:e2e:ci": "cross-env start-server-and-test http://localhost:8811 'cypress run'",
"typecheck": "tsc -b",
"ladle": "concurrently \"npm run dev:css\" \"ladle serve\""
},
"dependencies": {
"@headlessui/react": "^1.7.5",
"@heroicons/react": "^2.0.13",
"@popperjs/core": "^2.11.6",
"@prisma/client": "^4.8.1",
"@remix-run/node": "^1.12.0",
"@remix-run/react": "^1.12.0",
"@remix-run/serve": "^1.12.0",
"@remix-validated-form/with-zod": "^2.0.5",
"@sentry/remix": "^7.33.0",
"cross-env": "^7.0.3",
"debounce": "^1.2.1",
"dotenv-cli": "^6.0.0",
"fuse.js": "^6.6.2",
"prisma": "^4.9.0",
"qrcode": "^1.5.1",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"remix-auth": "^3.4.0",
"remix-auth-auth0": "^1.5.1",
"remix-typedjson": "^0.1.6",
"remix-utils": "^5.1.0",
"remix-validated-form": "^4.6.5",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@dlytle/react-component-generator": "^1.0.0",
"@dlytle/remix-generators": "^1.0.1",
"@ladle/react": "^2.4.5",
"@remix-run/dev": "^1.12.0",
"@remix-run/eslint-config": "^1.12.0",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/debounce": "^1.2.1",
"@types/node": "^18.11.18",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/uniqid": "^5.3.2",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.28.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"cypress": "^11.2.0",
"eslint": "^8.27.0",
"happy-dom": "^7.7.0",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"postcss": "^8.4.19",
"prettier-plugin-tailwindcss": "^0.2.2",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^3.2.4",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^0.25.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"engines": {
"node": ">=14"
}
}