-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.41 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
{
"name": "alternative-stack",
"private": true,
"description": "A Remix stack using hyper cloud as a services layer",
"license": "Apache-2.0",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:arc": "node ./arc-dev sandbox",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix watch",
"dev:hyper": "node ./hyper-dev",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"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\"",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test dev http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress"
},
"dependencies": {
"@architect/architect": "^10.6.0",
"@architect/functions": "^5.2.2",
"@remix-run/architect": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/server-runtime": "*",
"bcryptjs": "2.4.3",
"cuid": "^2.1.8",
"hyper-connect": "^0.5.1",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/architect__functions": "^3.13.7",
"@types/bcryptjs": "2.4.2",
"@types/eslint": "^8.4.6",
"@types/ramda": "^0.28.15",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.2",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"cypress": "^10.8.0",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^6.0.4",
"msw": "^0.47.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.23.2"
},
"engines": {
"node": ">=14"
}
}