-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
{
"private": true,
"name": "your-secrets",
"description": "Share secret messages with friends",
"license": "MIT",
"scripts": {
"build": "run-s -l clean validate build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p -l dev:*",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"start": "cross-env NODE_ENV=production node -r dotenv/config node_modules/.bin/remix-serve api/_build",
"generate:css": "tailwindcss -i ./styles/app.css -o app/styles/app.css",
"clean": "rimraf .cache api/_build public/build",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint ./app",
"type-check": "tsc -b",
"format": "prettier --write .",
"format-check": "prettier --check .",
"validate": "run-p -l lint format-check type-check"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"@remix-run/serve": "^1.7.0",
"@remix-run/vercel": "^1.7.0",
"@supabase/supabase-js": "^1.35.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.3.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/parser": "^5.36.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-sonarjs": "^0.15.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/postgres-data",
"/api/_build"
],
"engines": {
"node": ">=14"
},
"sideEffects": false
}