-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-audio-player",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:formatting": "prettier . --check",
"format": "prettier . --write",
"test": "vitest",
"test:coverage": "vitest --coverage --ui --open",
"test:ci": "vitest run",
"preview": "vite preview",
"documentation:generate": "typedoc",
"documentation:open": "open ./docs/typedoc/index.html",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"chromatic:deploy": "env-cmd npx chromatic --build-script-name=storybook:build --project-token=",
"husky:prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/noto-sans": "^5.0.15",
"framer-motion": "^10.16.4",
"howler": "^2.2.3",
"lodash.clamp": "^4.0.3",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.remove": "^4.7.0",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"tslog": "^4.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@storybook/addon-designs": "^7.0.5",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-storysource": "^7.4.6",
"@storybook/blocks": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/react-vite": "^7.4.2",
"@storybook/testing-library": "^0.2.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/howler": "^2.2.7",
"@types/lodash.clamp": "^4.0.7",
"@types/lodash.remove": "^4.7.7",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^0.34.1",
"@vitest/ui": "^0.34.6",
"chromatic": "^7.4.0",
"cz-conventional-changelog": "^3.3.0",
"env-cmd": "^10.1.0",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"storybook": "^7.4.2",
"typedoc": "^0.24.8",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.33.0"
},
"_id": "react-audio-player@0.0.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}