-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "remix-commerce",
"version": "1.0.0",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"deploy": "wrangler publish",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:miniflare": "cross-env NODE_ENV=development miniflare ./build/index.js --watch",
"dev:remix": "remix watch",
"format": "prettier --write .",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"start": "cross-env NODE_ENV=production miniflare ./build/index.js",
"test": "playwright test"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"dependencies": {
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@remix-run/cloudflare": "^1.7.3",
"@remix-run/cloudflare-workers": "^1.7.3",
"@remix-run/react": "^1.7.3",
"@tailwindcss/typography": "^0.5.7",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-image": "^1.3.3",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@playwright/test": "^1.27.1",
"@remix-run/dev": "^1.7.3",
"@remix-run/eslint-config": "^1.7.3",
"@remix-run/serve": "^1.7.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"eslint": "^8.20.0",
"miniflare": "^2.10.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"wrangler": "^2.1.13"
},
"engines": {
"node": ">=14"
}
}