-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 1.88 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
{
"name": "cod2d-transportadoras",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"version": "1.0.0",
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"e2e-test": "cypress run",
"format": "prettier --write .",
"generate:css": "npx tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"ntl:ci": "netlify dev",
"start": "cross-env NODE_ENV=production netlify dev",
"typecheck": "tsc -b"
},
"prettier": {},
"eslintIgnore": [
"/netlify/functions/server",
"/node_modules",
"/public/build",
"/server/build"
],
"dependencies": {
"@netlify/functions": "^1.4.0",
"@remix-run/netlify": "^1.13.0",
"@remix-run/node": "^1.13.0",
"@remix-run/react": "^1.13.0",
"@supabase/supabase-js": "^1.31.1",
"@testing-library/cypress": "^8.0.3",
"axios": "^1.3.3",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"cypress": "^10.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.2.0",
"zebra-browser-print-wrapper": "^0.1.4"
},
"devDependencies": {
"@remix-run/dev": "^1.12.0",
"@remix-run/eslint-config": "^1.12.0",
"@remix-run/serve": "^1.12.0",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"netlify-plugin-cypress": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
}
}