-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "muneo",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"dev:web": "turbo dev --filter=web",
"dev:admin": "turbo dev --filter=admin",
"build:web": "turbo build --filter=web",
"build:admin": "turbo build --filter=admin",
"test": "turbo test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:update": "playwright test --update-snapshots",
"test:e2e:type-check": "tsc -p e2e/tsconfig.json --noEmit",
"e2e:mock": "tsx e2e/mock-server/server.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "pnpm --filter @muneo/design-system storybook",
"build:icons": "pnpm --filter @muneo/design-system build:icons",
"gen:index": "pnpm --filter @muneo/design-system gen:index",
"prepare": "husky"
},
"devDependencies": {
"@muneo/eslint-config": "workspace:*",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.8.20",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"msw",
"sharp",
"unrs-resolver"
],
"packageExtensions": {
"eslint-config-next@*": {
"dependencies": {
"next": "*"
}
},
"next@*": {
"dependencies": {
"@vanilla-extract/next-plugin": "*"
}
}
}
}
}