-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "kpop-stack-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "cross-env NODE_ENV=production remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development netlify 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 .",
"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": "^0.10.0",
"@remix-run/netlify": "^1.4.3",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@supabase/supabase-js": "^1.31.1",
"bcryptjs": "^2.4.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@testing-library/cypress": "^8.0.2",
"@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",
"cypress": "^9.5.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}