-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 915 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
{
"name": "faker-playground",
"version": "1.0.0",
"private": true,
"scripts": {
"all": "pnpm run-s build test",
"test": "pnpm -r --workspace-concurrency 1 --filter=./playgrounds/* test",
"test:cjs": "pnpm -r --workspace-concurrency 1 --filter=./playgrounds/cjs test",
"test:esm": "pnpm -r --workspace-concurrency 1 --filter=./playgrounds/esm test",
"test:nextjs": "pnpm -r --workspace-concurrency 1 --filter=./playgrounds/nextjs test",
"build": "pnpm -r --workspace-concurrency 1 --filter=./playgrounds/* build"
},
"devDependencies": {
"npm-run-all2": "7.0.1",
"tsx": "4.19.2",
"typescript": "5.6.3"
},
"dependencies": {
"@faker-js/faker": "9.2.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides-for-dev": {
"@faker-js/faker": "link:../faker"
},
"overrides-for-release": {
"@faker-js/faker": "file:../faker"
}
}
}