-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "tecno-brega-stack",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"dev": "remix dev",
"build": "remix build",
"start": "remix-serve build",
"deploy": "flyctl deploy --remote-only",
"cy:open": "dotenv -e .env start-server-and-test dev http://localhost:3000 \"cypress open\"",
"cy:run": "npm run build && dotenv -v PORT=8811 -e .env start-server-and-test http://localhost:8811 \"cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@supabase/supabase-js": "^1.33.3",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@faker-js/faker": "^6.2.0",
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@types/node": "^17.0.25",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cypress": "^9.5.4",
"dotenv-cli": "^5.1.0",
"eslint": "^8.11.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
]
}