-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 658 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "@lazarv/create-react-server-test",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run -c ./vitest.config.mjs",
"test:node": "vitest run -c ./vitest.config.mjs __test__/node.spec.mjs",
"test:bun": "vitest run -c ./vitest.config.mjs __test__/bun.spec.mjs",
"test:deno": "vitest run -c ./vitest.config.mjs __test__/deno.spec.mjs",
"test:debug": "DEBUG=1 vitest run -c ./vitest.config.mjs",
"test:repack": "REPACK=1 vitest run -c ./vitest.config.mjs",
"test:update": "vitest run -c ./vitest.config.mjs --update",
"clean": "rm -rf .build"
},
"devDependencies": {
"vitest": "4.1.4"
}
}