-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 866 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
{
"name": "astroplate",
"private": true,
"scripts": {
"clean": "turbo run clean && rm -rf node_modules",
"dev": "dotenv -- turbo run dev --parallel",
"build": "dotenv -- turbo build",
"serve": "dotenv -- turbo serve",
"test": "turbo test",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md,astro}\"",
"generate:types": "dotenv -- pnpm --filter=api generate:types"
},
"devDependencies": {
"dotenv-cli": "latest",
"eslint-config": "workspace:*",
"prettier": "^3.3.0",
"turbo": "latest",
"typescript-config": "workspace:*"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"express"
]
}
},
"preinstall": "npx only-allow pnpm",
"engines": {
"node": ">=18"
}
}