UNPKG

1.74 kBJSONView Raw
1{
2 "name": "use-sound",
3 "author": "Josh Comeau",
4 "module": "dist/use-sound.esm.js",
5 "version": "0.3.0",
6 "license": "MIT",
7 "main": "dist/index.js",
8 "typings": "dist/index.d.ts",
9 "scripts": {
10 "start": "tsdx watch",
11 "build": "tsdx build",
12 "test": "tsdx test --passWithNoTests",
13 "lint": "tsdx lint",
14 "prepare": "tsdx build",
15 "storybook": "start-storybook -p 6006",
16 "build-storybook": "build-storybook"
17 },
18 "files": [
19 "dist"
20 ],
21 "dependencies": {
22 "howler": "^2.1.3"
23 },
24 "devDependencies": {
25 "@babel/core": "^7.8.7",
26 "@storybook/addon-actions": "^5.3.17",
27 "@storybook/addon-knobs": "^5.3.17",
28 "@storybook/addon-links": "^5.3.17",
29 "@storybook/addons": "^5.3.17",
30 "@storybook/react": "^5.3.17",
31 "@types/howler": "^2.1.2",
32 "@types/jest": "^25.1.4",
33 "@types/react": "^16.9.23",
34 "@types/react-dom": "^16.9.5",
35 "@typescript-eslint/eslint-plugin": "2.x",
36 "@typescript-eslint/parser": "2.x",
37 "babel-eslint": "10.x",
38 "babel-loader": "^8.0.6",
39 "eslint": "6.x",
40 "eslint-config-react-app": "^5.2.0",
41 "eslint-plugin-flowtype": "4.x",
42 "eslint-plugin-import": "2.x",
43 "eslint-plugin-jsx-a11y": "6.x",
44 "eslint-plugin-react": "7.x",
45 "eslint-plugin-react-hooks": "2.x",
46 "husky": "^4.2.3",
47 "react": "^16.13.0",
48 "react-dom": "^16.13.0",
49 "styled-components": "^5.0.1",
50 "ts-loader": "^6.2.1",
51 "tsdx": "^0.12.3",
52 "tslib": "^1.11.1",
53 "typescript": "^3.8.3"
54 },
55 "peerDependencies": {
56 "react": ">=16.8"
57 },
58 "husky": {
59 "hooks": {
60 "pre-commit": "tsdx lint"
61 }
62 },
63 "prettier": {
64 "printWidth": 80,
65 "semi": true,
66 "singleQuote": true,
67 "trailingComma": "es5"
68 }
69}