-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.08 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
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
96
97
98
99
100
101
102
103
104
105
{
"version": "0.1.0-beta.0",
"verbose": true,
"license": "MIT",
"homepage": "https://naomiaro.github.io/react-waveform-playlist-components",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -s ./media -p 6006",
"build-storybook": "build-storybook && cp -R ./media/ storybook-static",
"ghpages": "gh-pages --repo https://[email protected]/naomiaro/react-waveform-playlist-components.git -d storybook-static",
"website": "npm run build-storybook && npm run ghpages"
},
"peerDependencies": {
"react": ">=16",
"styled-components": ">=5"
},
"keywords": [
"waveform",
"audio",
"react",
"webaudio"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-waveform-playlist",
"author": "Naomi Aro",
"module": "dist/react-waveform-playlist.esm.js",
"size-limit": [
{
"path": "dist/react-waveform-playlist.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-waveform-playlist.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-storyshots": "^6.4.19",
"@storybook/addon-storyshots-puppeteer": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@types/events": "^3.0.0",
"@types/node": "^14.14.22",
"@types/puppeteer": "^5.4.5",
"@types/react": "^17.0.1",
"@types/react-dom": "^16.9.5",
"@types/storybook__addon-a11y": "^5.1.2",
"@types/styled-components": "^5.0.1",
"babel-loader": "^8.2.3",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"mobx": "^6.3.9",
"mobx-react-lite": "^3.2.2",
"mobx-state-tree": "^5.1.0",
"prettier": "2.6.0",
"puppeteer": "^13.5.1",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"size-limit": "^7.0.8",
"storybook-addon-mock": "^2.3.0",
"styled-components": "^5.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"events": "^3.3.0",
"fade-maker": "^1.0.3",
"react-async-hook": "^3.6.1",
"tone": "^14.7.77",
"waveform-data": "^4.1.1",
"webaudio-peaks": "1.0.0"
}
}