forked from remix-run/indie-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "paystack-remix-template",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"dev:mocks": "cross-env ENABLE_MOCKS=true remix vite:dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"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 && tsc -p cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"dependencies": {
"@paystackhq/pax": "^1.16.0-tailwind.20",
"@remix-run/css-bundle": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"isbot": "^3.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix": "^2.10.3",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.40.2",
"@types/node": "^18.16.18",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"autoprefixer": "^10.4.19",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"cypress": "^13.13.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-markdown": "^3.0.0",
"happy-dom": "^9.20.3",
"msw": "^2.3.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.4.6",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^2.0.4"
},
"engines": {
"node": ">=20"
}
}