forked from payloadcms/remix-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 974 Bytes
/
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
{
"name": "@org/remix-server",
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"clean": "turbo run clean && rm -rf node_modules",
"build": "turbo run build",
"serve": "turbo run serve",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@org/eslint-config": "workspace:*",
"prettier": "latest",
"turbo": "latest",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"express": "^4.18.1",
"payload": "^1.0.27"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"express"
]
}
}
}