-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.2 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.2 KB
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
{
"name": "boilerplate",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:postgres": "DATABASE_CLIENT=postgres DATABASE_NAME=strapi with-db turbo dev",
"dev:mysql": "DATABASE_CLIENT=mysql DATABASE_NAME=strapi with-db turbo dev",
"lint": "turbo lint",
"lint:ts": "turbo lint:ts:admin lint:ts:server",
"test:integration": "DATABASE_CLIENT=sqlite with-db turbo test:integration",
"test:integration:postgres": "DATABASE_CLIENT=postgres with-db turbo test:integration",
"test:integration:mysql": "DATABASE_CLIENT=mysql with-db turbo test:integration",
"test:e2e": "DATABASE_CLIENT=sqlite with-db turbo test:e2e",
"test:e2e:postgres": "DATABASE_CLIENT=postgres with-db turbo test:e2e",
"test:e2e:mysql": "DATABASE_CLIENT=mysql with-db turbo test:e2e",
"rename-plugin": "rename-plugin",
"update-dependencies": "pnpm --recursive --interactive --latest update",
"prepare": "husky"
},
"devDependencies": {
"@strapi-community/dev-utils": "workspace:*",
"@types/node": "^22.0.0",
"husky": "9.1.7",
"lint-staged": "^16.4.0",
"turbo": "^2.6.3"
},
"packageManager": "pnpm@10.18.1",
"engines": {
"node": ">=22"
}
}