-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "new-wave-stack",
"private": true,
"description": "The Remix Stack for deploying to Netlify with Clerk authentication, Fauna database client, testing, linting, and more.",
"keywords": [
"remix",
"remix-stack",
"clerk",
"faunadb",
"tailwind",
"netlify"
],
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development netlify dev\"",
"start": "cross-env NODE_ENV=production netlify dev",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "jest",
"typecheck": "tsc -b && tsc -b cypress"
},
"dependencies": {
"@clerk/remix": "^0.5.0",
"@netlify/functions": "^1.0.0",
"@remix-run/netlify": "*",
"@remix-run/node": "*",
"@remix-run/react": "*",
"cross-env": "^7.0.3",
"faunadb": "^4.5.4",
"jest": "^28.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "12",
"@types/jest": "^27.5.1",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.0",
"cypress": "^9.6.1",
"eslint": "^8.15.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
},
"jest": {
"testPathIgnorePatterns": [
"./cypress/*"
]
},
"engines": {
"node": ">=14"
}
}