This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "npm run build:css && npm run build:remix",
"build:css": "postcss ./css/admin.scss -o ./app/css/admin.css",
"build:remix": "remix build",
"dev": "npm run build:css && concurrently \"npm:dev:*\"",
"dev:css": "postcss ./css/admin.scss -o ./app/css/admin.css --watch",
"dev:remix": "remix watch",
"dev:cloudflare": "wrangler pages dev public --compatibility-date=2023-03-01 --persist --d1 DB --binding SESSION_SECRET=s --env local --live-reload",
"format": "prettier --write .",
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/cloudflare": "^1.14.0",
"@remix-run/react": "^1.14.0",
"@remix-run/serve": "^1.14.0",
"isbot": "^3.6.6",
"kysely-d1": "^0.3.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "*",
"@remix-run/dev": "^1.14.0",
"@remix-run/eslint-config": "^1.14.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.13",
"better-sqlite3": "^8.1.0",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"kysely-codegen": "^0.9.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"wrangler": "^2.12.0"
},
"engines": {
"node": ">=14"
}
}