-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.25 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
105
106
107
108
109
{
"name": "ibuddy",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:arc": "node ./dev sandbox",
"dev:remix": "remix watch",
"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\"",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test dev http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintIgnore": [
"/node_modules",
"/server/index.js",
"/public/build"
],
"dependencies": {
"@architect/architect": "^10.6.0",
"@architect/functions": "^5.2.2",
"@architect/plugin-storage-private": "^1.0.1",
"@aws-sdk/client-s3": "^3.223.0",
"@aws-sdk/client-ses": "^3.226.0",
"@aws-sdk/s3-request-presigner": "^3.223.0",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@mdi/js": "^7.0.96",
"@mdi/react": "^1.6.1",
"@mui/material": "^5.10.8",
"@remix-run/architect": "^1.7.2",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/server-runtime": "^1.7.2",
"bcryptjs": "^2.4.3",
"cuid": "^2.1.8",
"isbot": "^3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"sanitize-html": "^2.7.3",
"tiny-invariant": "^1.2.0",
"validator": "^13.7.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@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/architect__functions": "^3.13.7",
"@types/bcryptjs": "2.4.2",
"@types/eslint": "^8.4.6",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/sanitize-html": "^2.6.2",
"@types/validator": "^13.7.7",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.4",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"cypress": "^10.8.0",
"esbuild": "^0.15.8",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"happy-dom": "^6.0.4",
"msw": "^0.47.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.23.4"
},
"engines": {
"node": ">=14"
}
}