-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.79 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "chakra-player",
"version": "0.4.11",
"private": false,
"licence": "MIT",
"homepage": "https://greendevald1523.github.io/chakra-player/",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@chakra-ui/react": "1.8.8",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"framer-motion": "6.2.9",
"gh-pages": "^4.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.0",
"react-dom": "17.0.0",
"react-icons": "^3.0.0",
"react-scripts": "5.0.1",
"typescript": "^4.7.4"
},
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "rimraf -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"airbnb/hooks",
"plugin:react/jsx-runtime",
"prettier"
],
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js",
".jsx",
".tsx",
".ts"
]
}
],
"react/require-default-props": [
"error",
{
"functions": "defaultArguments"
}
],
"import/no-unresolved": [
2,
{
"caseSensitive": false
}
]
}
},
"prettier": {
"arrowParens": "always",
"trailingComma": "es5",
"singleQuote": true,
"semi": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "React player, made with [`Chakra UI`](https://chakra-ui.com/), can play the audio that you push in it.",
"main": "dist/ChakraPlayer.js",
"module": "dist/ChakraPlayer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GreenDevald1523/chakra-player.git"
},
"keywords": [
"chakra-player"
],
"author": "moonlancer",
"files": [
"dist",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GreenDevald1523/chakra-player/issues"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1"
}
}