-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@marko-tags/rive",
"version": "0.0.2",
"description": "Marko library project with TypeScript",
"homepage": "https://markojs.com/rive",
"license": "MIT",
"type": "module",
"files": [
"dist",
"marko.json",
"!**/*.test.*",
"!*.tsbuildinfo",
"!**/{,*.}stories.*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:deploy-storybook": "storybook build -o storybook-static && gh-pages --nojekyll -d storybook-static -u 'github-actions-bot <[email protected]>'",
"@ci:lint": "npm run lint",
"@ci:release": "npm run build && changeset publish",
"@ci:test": "vitest run --coverage --no-color",
"@ci:version": "changeset version && npm i --package-lock-only",
"build": "mtc",
"change": "changeset add",
"clean": "rm -rf coverage dist node_modules/.{cache,vite,vitest}",
"format": "eslint --format unix --fix .; stylelint --formatter unix --fix '**/*.css'; prettier . --write --log-level=warn",
"lint": "mtc && eslint --format unix . && stylelint --formatter unix '**/*.css' && prettier . --check --log-level=warn",
"prepare": "husky",
"storybook": "storybook dev",
"test": "vitest"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@marko/compiler": "^5.35.4",
"@marko/testing-library": "^6.2.0",
"@marko/type-check": "^1.1.7",
"@marko/vite": "^4.1.3",
"@rive-app/canvas-lite": "^2.21.6",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/marko": "^8.0.5",
"@storybook/marko-vite": "^1.0.4",
"@testing-library/jest-dom": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-testing-library": "^6.2.0",
"gh-pages": "^6.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"marko": "^5.33.3",
"prettier": "^3.2.5",
"prettier-plugin-marko": "^3.1.2",
"prettier-plugin-packagejson": "^2.4.12",
"storybook": "^7.6.17",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@rive-app/canvas-lite": "^2",
"marko": "^5"
}
}