-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.09 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
{
"name": "inquire",
"description": "Inquire is a multi-purpose tool for self-inquiry.",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "remix dev",
"dev:e2e": "npm run test:e2e:env -- remix dev --port 3001",
"build": "remix build",
"start": "dotenv -e .env remix-serve build",
"deploy": "fly deploy --remote-only",
"format": "prettier --write .",
"type-check": "tsc -b",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "npm run test:env -- vitest",
"test:env": "dotenv -e .env.test --",
"test:e2e": "npm run test:e2e:env -- playwright test",
"test:e2e:headed": "npm run test:e2e:env -- playwright test --headed",
"test:e2e:ui": "npm run test:e2e:env -- playwright test --ui",
"test:e2e:debug": "npm run test:e2e:env -- playwright test --debug",
"test:e2e:env": "dotenv -e .env.e2e --",
"db:migrate": "prisma migrate dev",
"db:setup": "prisma generate && npm run db:push",
"db:push": "run-p db:push:*",
"db:push:dev": "prisma db push",
"db:push:test": "npm run test:env -- prisma db push",
"db:push:e2e": "npm run test:e2e:env -- prisma db push",
"db:reset-dev": "run-s db:wipe:dev db:seed",
"db:wipe": "run-p db:wipe:*",
"db:wipe:dev": "prisma migrate reset --force",
"db:wipe:test": "npm run test:env -- prisma migrate reset --force",
"db:wipe:e2e": "npm run test:e2e:env -- prisma migrate reset --force",
"db:seed": "ts-node -r tsconfig-paths/register ./prisma/seed.ts",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "2.0.18",
"@magic-sdk/admin": "2.0.0",
"@paralleldrive/cuid2": "2.2.2",
"@prisma/client": "5.3.0",
"@remix-run/node": "1.19.3",
"@remix-run/react": "1.19.3",
"@remix-run/serve": "1.19.3",
"isbot": "3.6.13",
"magic-sdk": "19.4.0",
"prettier-plugin-organize-imports": "^3.2.3",
"ramda": "0.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tiny-invariant": "1.3.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@axe-core/playwright": "4.7.3",
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@faker-js/faker": "8.0.2",
"@playwright/test": "1.38.0",
"@remix-run/dev": "1.19.3",
"@remix-run/eslint-config": "1.19.3",
"@remix-run/testing": "1.19.3",
"@tailwindcss/forms": "0.5.6",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.0",
"@types/ramda": "0.29.4",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "4.0.4",
"dotenv-cli": "7.3.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-playwright": "0.16.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"lint-staged": "14.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"prisma": "5.3.0",
"tailwindcss": "3.3.3",
"tsconfig-paths": "4.2.0",
"typescript": "5.2.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.4"
}
}