-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.02 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.02 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
{
"name": "@modulify/m3-web",
"type": "module",
"version": "0.0.0",
"description": "Material design v3 implementation for web",
"workspaces": [
"m3-react",
"m3-foundation",
"m3-vue"
],
"scripts": {
"build": "yarn workspaces foreach -W run build",
"commitlint": "commitlint --edit",
"eslint": "yarn workspaces foreach -W run eslint",
"test:e2e:react": "yarn workspace @modulify/m3-react test:e2e",
"test:e2e:vue": "yarn workspace @modulify/m3-vue test:e2e",
"test:e2e": "yarn test:e2e:react && yarn test:e2e:vue",
"test:e2e:coverage:react": "yarn workspace @modulify/m3-react test:e2e:coverage --coverage.reportsDirectory=../coverage/e2e-react",
"test:e2e:coverage:vue": "yarn workspace @modulify/m3-vue test:e2e:coverage --coverage.reportsDirectory=../coverage/e2e-vue",
"test:e2e:coverage": "yarn test:e2e:coverage:react && yarn test:e2e:coverage:vue",
"test:smoke": "yarn workspace @modulify/m3-react test:smoke && yarn workspace @modulify/m3-vue test:smoke",
"test": "vitest run",
"tsc": "yarn workspaces foreach -W run tsc",
"tsc:tests": "yarn workspace @modulify/m3-react tsc:tests && yarn workspace @modulify/m3-vue tsc:tests",
"tsc:e2e": "tsc -p tsconfig.e2e.json --skipLibCheck",
"tsc:foundation": "yarn workspace @modulify/m3-foundation tsc",
"tsc:react": "yarn workspace @modulify/m3-react tsc",
"tsc:vue": "yarn workspace @modulify/m3-vue tsc"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/ui": "4.0.18",
"canvas": "^3.2.1",
"jsdom": "^28.1.0",
"nyc": "^17.1.0",
"playwright": "^1.55.0",
"typescript": "~5.9.3",
"vitest": "^4.0.18"
},
"contributors": [
"Tatyana Komolyh <tatyana.comolyh@gmail.com>"
],
"packageManager": "yarn@4.6.0",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}