-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && NODE_ENV=production remix build",
"dev": "pm2-dev ./pm2.config.js --env development",
"build:css": "postcss styles/**/*.css --base styles --dir app/styles --env production",
"postinstall": "remix setup cloudflare-pages",
"start": "npm run dev:wrangler"
},
"dependencies": {
"@remix-run/cloudflare-pages": "^1.1.3",
"@remix-run/react": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3",
"remix-utils": "^2.5.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.2.0",
"@remix-run/dev": "^1.1.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@willin/eslint-config": "^0.1.1",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"esbuild": "0.13.14",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"pm2": "^5.1.2",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.19",
"typescript": "^4.5.5",
"wrangler": "alpha"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"main": "dist/worker.js"
}