-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "opendiro.github.io",
"private": true,
"description": "",
"sideEffects": false,
"main": "build/index.js",
"scripts": {
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development wrangler pages dev ./public",
"dev": "yarn build && run-p 'dev:*'",
"start": "cross-env NODE_ENV=production npm run dev:wrangler",
"postinstall:patches:remix-cloudflare": "remix setup cloudflare",
"postinstall:finalise": "yarn --mode=skip-build",
"postinstall": "run-s 'postinstall:patches:*' 'postinstall:finalise'",
"clean:tsc": "rimraf .build/",
"clean:remix": "rimraf functions/ .cache/ public/static/",
"clean": "run-p 'clean:*'",
"fullclean:clean": "run-p 'clean'",
"postfullclean": "rimraf '.yarn/cache/' '.yarn/install-state.gz' 'node_modules'",
"fullclean": "run-s 'fullclean:*' 'postfullclean'",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@remix-run/cloudflare-pages": "^1.3.3",
"@remix-run/react": "^1.3.3",
"cross-env": "^7.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.3.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@remix-run/dev": "^1.3.3",
"@remix-run/eslint-config": "^1.3.3",
"@remix-run/serve": "^1.3.3",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/rimraf": "^3",
"@types/web": "^0.0.60",
"eslint": "^8.12.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.6.3",
"wrangler": "beta"
},
"resolutions": {
"@typescript/lib-dom": "npm:@types/web@*",
},
"engines": {
"node": "^16.14.0",
"yarn": "3.2.0"
},
"packageManager": "[email protected]"
}