-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
33
34
{
"name": "@apostrophecms",
"private": true,
"scripts": {
"dev": "pnpm --parallel --recursive run dev",
"build": "pnpm --recursive run build",
"lint": "pnpm --recursive run lint",
"test": "APOS_TEST_DB_PROTOCOL=postgres pnpm run test:main && APOS_TEST_DB_PROTOCOL=mongodb pnpm run test:main && APOS_TEST_DB_PROTOCOL=sqlite pnpm run test:main && APOS_TEST_DB_PROTOCOL=multipostgres pnpm run test:main",
"test:main": "echo \"APOS_TEST_DB_PROTOCOL IS: $APOS_TEST_DB_PROTOCOL\" && pnpm --recursive run test",
"eslint": "pnpm --recursive run eslint",
"mocha": "pnpm --recursive run mocha",
"clean": "pnpm -r exec rm -rf node_modules && rm -rf node_modules && rm pnpm-lock.yaml"
},
"devDependencies": {
"@changesets/cli": "^2.30.0"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"sharp",
"vue-demi",
"@parcel/watcher",
"esbuild",
"unrs-resolver"
],
"ignoredBuiltDependencies": [
"protobufjs"
]
},
"packageManager": "pnpm@10.18.0"
}