-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 886 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 886 Bytes
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
{
"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": "^2.8.4",
"turbo": "^1.7.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"express"
]
}
}
}