-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.82 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-playground",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"config/*",
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo build --concurrency=1",
"dev": "turbo run dev --parallel",
"format": "concurrently pnpm:format:*",
"format:biome": "biome lint --write ./",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:stylelint": "stylelint 'src/**/*.css' --fix --allow-empty-input",
"lint": "concurrently pnpm:lint:*",
"lint:biome": "biome lint ./",
"lint:package-json": "sort-package-json --check \"package.json\" \"packages/*/package.json\"",
"lint:stylelint": "stylelint 'packages/src/**/*.css' --allow-empty-input",
"start": "turbo run dev --parallel",
"test": "jest --watchAll=false --collect-coverage packages/*/src",
"test:vrt": "turbo test:vrt",
"test:vrt:install": "turbo test:vrt:install",
"test:vrt:update": "turbo test:vrt:update",
"typedoc": "typedoc"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.10.2",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"concurrently": "^9.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"sort-package-json": "^2.12.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended": "^14.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.1"
}